Specific to Apple's iPhone and/or iPod touch, but inapplicable to iPad. For questions not dependent on hardware, use the "iOS" tag. Another tag to consider is "cocoa-touch" (but not "cocoa"). Please refrain from questions regarding the iTunes App Store or about iTunes Connect.

learn more… | top users | synonyms (6) | iphone jobs

1
vote
1answer
78 views
+50

How to retrieve the .xml extension attachments from mail by using MailCore to Sample iPhone app

How to retrieve the .xml extension attachments from mail by using MailCore for iphone? I used MailCore to download the attachments from my mail to my sample iPhone app. I getting Inbox subjects ...
1
vote
1answer
76 views
+50

Support landscape orientation to a circle of UIVIEWS:

Trying to support Landscape orientation, following is the drawing code. NOTE: aCell is object of UIControl class:- - (void)layoutCells { for ( UIView *aCell in _cells ){ if ( [aCell superview] ...
1
vote
1answer
5k views
+50

AVAudioPlayer initialization error

I initialize my AVAudioPlayer instance like: [self.audioPlayer initWithContentsOfURL:url error:&err]; url contains the path of an .m4a file The following error is displayed in the console when ...
1
vote
3answers
72 views
+50

iOS Google Analytics SDK - weird session length

I can't seem to understand these following stats from google analytics engagement behavior loyalty: This indicates, that the average first session length is 24s, and out of the 42,530 user's 40,289 ...
0
votes
2answers
94 views
+50

Adding a method to my uitextfield in cell?

I am adding this Method to my code to format the textfield. I am using the code below to try and add the method, but it not working, what am I doing wrong? .h file NSString* phone_; UITextField* ...
3
votes
1answer
147 views
+400

Animation Duration for UICollectionView selectItemAtIndexPath:animated:scrollPosition:

I have tried to set the duration (with the normal methods that I would try) for setting the animation duration for UICollectionView's selectItemAtIndexPath:animated:scrollPosition: method (or the ...
4
votes
0answers
133 views
+50

Returning CGRect from mocked method crashes

I was just practising OCMock, The problem I am facing here is I have one method named foo which returns CGRect, this method is called from another method callFoo. -(CGRect)foo { return ...
3
votes
0answers
128 views
+50

drawn area in UIImage not recognized correctly

I am having a strange problem in my project. What I want to do is that, a user will paint or draw using swipe over a image as overlay and I just need to crop the area from the image that is below the ...
0
votes
5answers
66 views
+50

UICollectionView: header view programmatically

This is the way i am working on header. // viewDidLoad [self.collectionView registerClass:[UICollectionViewCell class]forCellWithReuseIdentifier:@"Cell"]; [self.collectionView ...
0
votes
0answers
16 views
+50

iOS App Admob text and image banner distribution

There are 2 types of admob banners, image banner and text banners. for image, I only need to click once to get paid. But for text banner, if I use old SDK, you only need to click once on the arrow ...
6
votes
0answers
361 views
+100

How to make a movie from set of images using UIGetScreenImage

I have used this method and get multiple images.i am also success to create movie but my problem is that when i play movie,it seems to be fast playing i.e movie didn't take all frames.Here my code. ...