The version of iOS (formerly iPhone OS) was released by Apple on Oct 13, 2011. iOS 5 runs on iPhone 3GS, iPhone 4, iPhone 4S, iPod Touch 3rd and 4th generation, as well as all iPad models
175
votes
4answers
27k views
Should IBOutlets be strong or weak under ARC?
I am developing exclusively for iOS 5 using ARC. Should IBOutlets to UIViews (and subclasses) be strong or weak?
The following:
@property (nonatomic, weak) IBOutlet UIButton *button;
Would get rid ...
134
votes
14answers
54k views
Loaded nib but the view outlet was not set - new to InterfaceBuilder
I added a new nib file to my project, and all I want to do is have it display on the screen for now.
However, when I click on the toolbar icon that is supposed to take me to the view that I created, ...
126
votes
5answers
50k views
Some questions about Automatic Reference Counting in iOS5 SDK
I'm currently developing an app for iPad. The development started for iOS 4.2 and is now continuing (and I think will be completed) for iOS 4.3.
I just read about ARC in iOS 5, and basically I ...
123
votes
4answers
27k views
Disable Automatic Reference Counting for Some Files
I have downloaded the iOS 5 SDK and found that ARC is a great feature of the new Apple compiler. For the time being, many third party frameworks don't support ARC. Could I use ARC for my new code and ...
121
votes
7answers
30k views
Semantic Issue: Property's synthesized getter follows Cocoa naming convention for returning 'owned' objects
I'm currently using the iOS 5 SDK trying to develop my app.
I'm trying to make an NSString a property, and then to synthesize it in the .m file (I have done this before with no issues). Now, I came ...
121
votes
1answer
12k views
Xcode 4.2 - declaration of '…' will not be visible outside of this function warning
I use Apple Reachability class from Apple Sample code Reachability
http://developer.apple.com/library/ios/#samplecode/Reachability/Listings/ReadMe_txt.html
in Xcode 4.2 and new Apple 3.0 compiler I ...
97
votes
6answers
53k views
iOS 5 Best Practice (Release/retain?)
As a beginning iPhone programmer, what is the best practice for writing apps to be used either with iOS 5 or older versions? Specifically, should I continue using the release/retain of data, or should ...
91
votes
7answers
22k views
Enabling auto layout in iOS 6 while remaining backwards compatible with iOS 5
What is the best way to take advantage of the new auto layout features of iOS 6 while still providing compability with older devices on earlier versions of iOS?
87
votes
19answers
28k views
iOS5 Storyboard error: Storyboards are unavailable on iOS 4.3 and prior
I've built a small app using storyboards and it ran great. Just before final testing I decided to try it out to see if it runs on iOS 4.3. I clicked on the gray 5.0 in the project settings and ...
87
votes
7answers
31k views
Is it possible to target older iOS versions when using Xcode 4.2 and iOS 5 SDK?
I just recently downloaded the Xcode 4.2 with iOS 5 SDK package and I immediately noticed that I am unable to use my iPhone 3Gs with iOS 4.2.1 for debugging. I am only able to debug and test on my ...
76
votes
7answers
37k views
How to build for armv6 and armv7 architectures with iOS 5
In iOS5 Apple drops the armv6 architecture from the ARCHS_STANDARD_32_BIT.
In order to keep the support for iPhone3G I still want to compile in armv6 even in iOS5.
Did anyone find a solution for ...
72
votes
7answers
16k views
AVAudioRecorder is broken on iOS 5
I use AVAudioRecorder to record, it worked fine on iOS 4 devices, but yesterday we found out recording is broken on iOS5. Using the iPhone 5 simulator I got following error:
2011-08-02 ...
69
votes
7answers
9k views
To ARC or not to ARC? What are the pros and cons?
I've yet to use ARC, since the majority of the code in the project I'm working on at the moment was written pre-iOS 5.0.
I was just wondering, does the convenience of not retaining/releasing ...
55
votes
4answers
14k views
iOS5 NSURLConnection methods deprecated
I'm trying to write an iOS app that makes asynchronous requests to get data over the network. It seems like a lot of people recommend using NSURLConnection for this, and frequently mention the ...
55
votes
10answers
24k views
How to enable iOS 5 Safari Reader on my website?
How does the Reader function of Mobile Safari in iOS 5 work? How do I enable it on my site. How do I tell it what content on my page is an article to trigger this function?
55
votes
1answer
25k views
How does View Controller Containment work in iOS 5?
In WWDC 2011 Session 102, Apple introduced View Controller Containment, which is the ability to create custom view controller containers, analogous to UITabBarController, UINavigationController, and ...
53
votes
2answers
4k views
Override setter with arc
@interface Article : NSObject
@property (nonatomic, strong) NSString *imageURLString;
@end
@implementation Class
@synthesize imageURLString = _imageURLString;
- ...
48
votes
3answers
5k views
Core Data background fetching via new NSPrivateQueueConcurrencyType
Is it really so simple now in iOS5?
I used to perform a background fetch using this code in my AppDelegate:
dispatch_queue_t downloadQueue = dispatch_queue_create("DownloadQueue", NULL);
...
47
votes
9answers
15k views
Icon already includes gloss effects
I have a problem with the gloss effect in app icon at iOS 5 beta 5, in iOS 4 it's show the effect not gloss, but iOS5 shows the glosss effect. I put the option Icon already includes gloss effects = ...
46
votes
1answer
4k views
iMessage Style Receding Keyboard in an iOS App
I've been wondering if it is possible to replicate the behavior of Apple's iOS5 keyboard in the messages app, without using any private API calls. When you scroll down past the keyboard in the ...
43
votes
5answers
10k views
Unable to process application info.plist validation at this time due to a general error (1095)
I am creating a newsstand application. the application is ready, now i am trying to upload the app in apple store using Application Loader. While uploading the zip file its showing the error message ...
42
votes
3answers
22k views
Difference between Modal and Push segue in storyboards
Can someone explain to me what is the exact difference between modal and push segue?
I know that when we use push it gets added to a stack, so when we keep using push it keeps occupying memory?
Can ...
39
votes
3answers
12k views
iOS 5: Curious about UIAppearance
On the tech talk 2011 I saw a speech about the new UIAppearance protocol. There is not a lot of documentation out there yet. I will shortly summarize what I remember to explain where my question is ...
38
votes
17answers
13k views
Xcode compiles my App, but can't run it in the simulator
when i compile my app, Xcode just says "Attaching to Projectname..." and gets stuck there.
The debugger just prints this out:
error: failed to attach to process ID 0
I tried to clean & build ...
37
votes
3answers
7k views
No exception stack trace in console under Xcode 4.2/iOS 5?
Under Xcode 3.x and iOS 4, if an unhandled exception is signaled in the emulator there is an exception stack trace (similar to Java's) produced in the console output.
When I raise an unhandled ...
36
votes
4answers
5k views
What are the advantages and disadvantages of using ARC?
What are the advantages and disadvantages of using the new automatic reference counting (ARC) memory management style in an iOS project?
Can you choose not to use ARC when developing with the iOS 5.0 ...
36
votes
1answer
14k views
how to use delegates with Automatic Reference Counting
I've jumped on the ARC bandwagon. In the past I would have my delegate properties declared like this:
@property(assign) id<MyProtocol> delegate;
So I thought I would do this under ARC:
...
35
votes
1answer
5k views
What properties can I set via an UIAppearance proxy?
What properties can I set via an UIAppearance proxy? Apple's UIKit documentation does not list them. Is there a list of these properties?
35
votes
6answers
9k views
iOS 5 does not allow to store downloaded data in Documents directory?
I have made an application for my client by keeping target iOS as 4.
But since the application still not submitted to Apple store, my client is planning to upgrade it for iOS 5.0.
For this I read ...
34
votes
8answers
9k views
Custom Cell Row Height setting in storyboard is not responding
I am trying to adjust the cell height for one of the cells on my table view. I am adjusting the size from the "row height" setting inside the "size inspector" of the cell in question. When I run the ...
34
votes
7answers
32k views
Container View Controller Examples
Can anyone point me to any good examples of creating a Custom View Controller as a Container View Controller? The only documentation I can find is a couple of paragraphs in the UIViewController Class ...
33
votes
5answers
34k views
How do storyboards work in iOS 5?
I can't seem to figure out how they work. Please help! I can't figure out how to add .xib's to them either.
33
votes
3answers
18k views
What is the difference between a .xib file and a .storyboard?
Can someone explain in simple words the difference between .xib and .storyboard?
32
votes
2answers
9k views
dequeueReusableCellWithIdentifier error in my UITableView in iOS5
I am getting this error in iOS 5
-[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]: unrecognized selector sent to instance 0xa217200
However, I get no errors in iOS 6. How can I fix ...
31
votes
5answers
45k views
What is the iOS 5.0 user agent string?
What is the iOS 5.0 user agent string?
Here is the iOS 4.0 user agent: What is the iPhone 4 user-agent?
29
votes
2answers
17k views
How to disable Xcode4.2 Automatic Reference Counting
Today, I have update my xCode to 4.2 version, And I want to disable the ARC, I also search with the google. but can't fix my problem. According the search results, In the target setting, I can't ...
29
votes
5answers
8k views
Crash when adding persistent store (iCloud enabled) in app delegate
I am going to start updating this to help those seeking to use this as reference for their own personal code.
Newest update
I'm fairly sure I have found a way to resync devices back together once ...
29
votes
4answers
2k views
GLKView set drawable properties
I'm trying to port Apples GLPaint example to use GLKit. Using a UIView, its possible to return the CAEAGLLayer of the view and set the drawableProperties to include ...
28
votes
5answers
13k views
UIView Infinite 360 degree rotation animation?
I'm trying to rotate a UIImageView 360 degrees, and have looked at several tutorials online. I could get none of them working, without the UIView either stopping, or jumping to a new position.
How ...
28
votes
10answers
13k views
Mobile Safari bug on fixed positioned button after scrollTop programmatically changed…?
I'm just about done a webpage but there is one bug in Mobile Safari (iPhone and iPad iOS 5.0.1) with two buttons that are fixed to the upper and lower right corners..
The buttons are not faded in ...
28
votes
7answers
8k views
iOS: different addSubview behavior between iOS 4.3 and 5.0
while coding in iOS 4.3 before, I found while add a view controller's view to another view with [superview addSubView:controller.view], the controller instance will not receive the ...
28
votes
5answers
10k views
Can I programmatically clear my app's notifications from the iOS 5 Notification Center?
I would like to remove old notifications that my app has made from the iOS 5 Notification Center. Can I do this? If so, how?
16
votes
1answer
6k views
viewController custom init method with storyboard
im having trouble overriding the initialization method for my CustomViewController thats designed in my Storyboard.
now im doing (in my mainViewController):
self.customViewController = ...
5
votes
2answers
4k views
What is Container View in iOS 5 SDK?
I'm confused that why and when we need to use the container view? and how can we instantiate a Container View by code?
2
votes
1answer
891 views
use of undeclared identifier 'NSMigratePersistentStoresAutomaticallyOption'
How come I get this error when I'm declaring the code statement below?
use of undeclared identifier 'NSMigratePersistentStoresAutomaticallyOption'
NSDictionary *options = [NSDictionary ...
1
vote
5answers
86 views
Checking a null value from Json response in Objective-C
[
{
"AT" : null,
"EA" : null,
"AD2" : "",
"OP" : null,
"AdsLst" : [
],
"EMs" : null,
"ND" : {
"MN" : null,
"FN" : "Sony",
"LN" : "J"
},
...
1
vote
2answers
372 views
iOS CoreLocation CLGeocoder giving incomplete UK postcode
I've got CoreLocation finding me, and then I'm trying to run reverseGeocodeLocation to figure out the postcode. However, I'm getting an incomplete postcode (SO31 4). Normally you'd expect another two ...
0
votes
1answer
57 views
App crashes after adding the AdSupport.framework
Hi I get this error on startup:
dyld: Library not loaded: /System/Library/Frameworks/AdSupport.framework/AdSupport
Referenced from: /Users/owner12/Library/Application Support/iPhone ...
0
votes
1answer
120 views
MkAnnotation drop animation iOS 6
I try to animate my custom MkAnnotation, it works great on iOS 5 but not on iOS 6. Here is me didAddAnnotationViews method :
- (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray ...
-1
votes
2answers
234 views
applicationDidEnterBackground and applicationWillEnterForeground method are not called when pressed home button in iOS simulator
I need a long running task to be done in background as well as in foreground. This updates the core data. So to maintain UI responsive I created an another thread where I use different ...