objective-c tag

189 questions


2 answers
94 views
0
Best Practices for NSMutableArray Method Arguments

What is the best method for NSMutableArray method arguments?Array1 and array2 in the source code below contain similar values.-(void)testMethod{ NSMutableArray*array1 = NSMutableArray array; NSMutable...

2 years ago

1 answers
130 views
0
About screen transition data

I'm having trouble passing data on two screens.I would like to change the content displayed when I transition from the first screen to the second screen depending on the cell selected in TableView on ...

2 years ago

1 answers
139 views
0
About screen transition data

I'm having trouble passing data on two screens.I would like to change the content displayed when I transition from the first screen to the second screen depending on the cell selected in TableView on ...

2 years ago

1 answers
57 views
0
UICollectionView cells misaligned when returned from a screen transition by show Segue

When drawing for the first time, it appears as shown in the image below, but When I return from the show screen transition, the display will be misaligned as shown below.I tried to play with the top b...


1 answers
130 views
0
UICollectionView cells misaligned when returned from a screen transition by show Segue

When drawing for the first time, it appears as shown in the image below, but When I return from the show screen transition, the display will be misaligned as shown below.I tried to play with the top b...


1 answers
91 views
0
Change the color of the diagram you want CABasicAnimation to animate

I have created a pie chart by referring to the link below.https://gist.github.com/glayash/38aa605f99a9666a925dI want to change the color of the graph depending on the conditions, but it doesn't change...


1 answers
102 views
0
I want to transition from AppDelegate to ViewController using UINavigationController

I am currently trying to receive the URL I threw in the push notification in AppDelegate and display it in WebView.Also, this WebView is not only used for that purpose, but also for other situations.M...

2 years ago

1 answers
69 views
0
Understanding the Photo Display by Section of the Collectionview

I am using collection view for view.Allows you to add sections to the collection view later.Then, I would like to tap the button attached to the added section so that I can select and view each photo ...

2 years ago

2 answers
110 views
0
About the animation that moves the image view little by little while pressing the button.

[UIView animationWithDuration:0] delay:0 options:UIViewAnimationOptionCurveEaseIn animations:^{   self.view.transform=CGAffineTransformMakeTranslation(0,0);}completion:^ {}];I understand tha...


1 answers
102 views
0
Memory Leak in Continuous Downloads with NSURLSession (iOS8)

I would like to download 60 files (about 2M each) continuously using NSURLSession.I created the following sample code and successfully downloaded it. Press the button to download 60 files.When the dow...

« - 5 - »

© 2024 OneMinuteCode. All rights reserved.