The ios5 tag has no wiki summary.
78
votes
4answers
31k 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 ...
67
votes
5answers
33k 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 ...
59
votes
1answer
8k 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 ...
43
votes
5answers
9k 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 ...
40
votes
5answers
11k 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.
Does anyone found an issue for ...
39
votes
4answers
7k 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 ...
38
votes
3answers
4k 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 ...
35
votes
5answers
10k 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 ...
31
votes
1answer
842 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 ...
28
votes
5answers
4k 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 = ...
26
votes
1answer
947 views
What to watch out for when transitioning to iOS 5
Summary: Can you add to my checklist of things to watch out for when migrating to iOS 5? StackOverflow has been invaluable as I've worked on upgrading to iOS 5. I've discovered some pretty basic ...
23
votes
1answer
2k 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 ...
22
votes
8answers
6k 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 ...
20
votes
6answers
18k 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.
19
votes
4answers
3k 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 ...
18
votes
5answers
1k 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 ...
18
votes
2answers
1k 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 ...
16
votes
4answers
2k 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
3k views
UITableView section header iOS 5
I have multiples tables delegated to a UIViewController. In IOS4 I used the function: (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section to change the background ...
16
votes
6answers
5k views
Modal view controller won't dismiss itself
What I'm doing:
In my app, I'm presenting a modal view controller (containing app settings) using the following code:
optionsViewController.modalTransitionStyle = ...
15
votes
1answer
719 views
Has anyone found a good way of using the new iOS5 keyboard events?
During development of a recent feature for my iPad app, I realized that the new iOS5 keyboard docking/splitting behavior was causing huge issues. I use an inputAccessoryView for the keyboard with a ...
15
votes
1answer
269 views
Xcode 4 workflow when working with multiple dev
I tried to find the proper way to work with storyboards when there are many devs on the same project and can't find anything useful.
Before storyboards, we would lock the nib while using it to make ...
15
votes
3answers
6k views
Xcode 4.2 Warnings when dropping Nav Controller on Tab Bar in IB
I'm developing an app which is iOS 4 compatible, so my deployment target is set to iOS 4.0.
Whenever I drop a UINavigationController onto a UITabBar, I get these two warnings:
warning: Attribute ...
14
votes
4answers
866 views
iOS5 show numeric keypad by default without using type=“number” or type=“tel”
With the release of iOS5, Apple has added their own validation to input type="number" form fields. This is causing some issues; see this question below which sums it up:
Input type='number' ...
14
votes
1answer
944 views
UISegmentedControl change event not firing in iOS5
I have a UISegmentedControl whose "Value changed" event is wired up in Interface Builder to call my controller's -(IBAction)segmentChangeAction:(id)sender;
When the user taps on the control to change ...
14
votes
2answers
1k views
iOS5: Exception on UIWebView in modal UIViewController playing Youtube video
I am currently working on adapting an existing iOS 4 application with the new iOS 5 SDK.
I found a new crash when presenting a UIWebView in a modal view controller that reads a Youtube video.
...
14
votes
3answers
490 views
Custom URL scheme not recognized as link in SMS app(only in iphone 4 iOS 5.0)
Summary:
In my application, I've defined a custom URL in the format "myapp://.." . But the URL is not recognized as a link when it comes in an SMS. So the user is not able to tap it and launch the ...
13
votes
2answers
487 views
Can Siri be disabled within an app?
I'm working an on iOS game and recently tested on an iPhone 4S. Siri activates sometimes when my thumb covers the proximity sensor. This is a feature of the 4S. Instead of holding the home button, ...
13
votes
3answers
2k views
Detect Silent mode in iOS5?
I have used this method in the past to detect if the silent switch is enabled:
- (BOOL)silenced {
#if TARGET_IPHONE_SIMULATOR
// return NO in simulator. Code causes crashes for some reason.
...
13
votes
5answers
2k views
Prevent iCloud sync of data (using .nosync?)
EDIT: So far, the best I've been able to come up with is a pop-up to ask the user to disable iCloud sync, along with moving all the data to the Documents directory so it won't get wiped: In iOS5, is ...
13
votes
1answer
2k views
Automatic Reference Counting (ARC) says that invoking [super dealloc] is forbidden…what is the alternative?
I'm starting to use iOS5 and I've enabled ARC for my project. I have a class where on deallocation I save the state of that object.
-(void)dealloc {
[self save];
[super dealloc];
}
...
12
votes
1answer
707 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);
...
12
votes
3answers
1k 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.
Using iCloud on iOS 5.0.1, I'm occasionally getting errors pertaining to the persistent ...
12
votes
4answers
1k 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 ...
11
votes
3answers
1k views
HTML5 video on iOS5 not loading/showing
I have an HTML/JS app running in a webview in an iPad app. The app uses the HTML5 video tag. Videos work fine in iOS4.3 but today I've tested on iOS5 and the videos simply do not show up.
I have ...
11
votes
1answer
3k 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:
...
10
votes
5answers
486 views
iOS: to ARC or not to ARC? 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 ...
10
votes
3answers
1k 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 ...
10
votes
1answer
335 views
OpenGL ES Interleaving Vertex Buffer Object
I've been looking at the new OpenGL framework for iOS, aptly named GLKit, and have been playing around with porting some existing OpenGL 1.0 code to OpenGL ES 2.0 just to dip my toe in the water and ...
10
votes
2answers
539 views
Override setter with arc
@interface Article : NSObject
@property (nonatomic, strong) NSString *imageURLString;
@end
@implementation Class
@synthesize imageURLString = _imageURLString;
- ...
10
votes
2answers
6k views
What is the iOS 5 user-agent string?
What is the iOS 5.0 user-agent string?
From this SO question: what-is-the-iphone-4-user-agent, I assume it is something similar, but need confirmation.
10
votes
2answers
1k views
How to get silent switch status in iOS5
I found out "Silent switch" status of Device using "AudioSessionGetProperty" before [iOS5] released.
CFStringRef route;
UInt32 propertySize = sizeof(CFStringRef);
AudioSessionInitialize(NULL, NULL, ...
10
votes
2answers
910 views
iOS 5: Can I have my app “In Notification Center” by default?
I have an iPad app in the App Store whose logic relies largely on local notifications. In other words, much that happens inside the app is triggered by the delegate method application ...
9
votes
0answers
108 views
Can you pass WiFi settings from an iOS device to an ExternalAccessory object?
I've heard that iOS 5 introduced a feature in which the iOS device can share its wifi configuration with a docked accessory via the ExternalAccessory framework. The trouble is that I can't find any ...
9
votes
3answers
162 views
Objective-C ARC vs. MRR: why the switch?
I am a new cocoa developer coming from a C#/Java background. I had been introduced to memory management patterns which objective-c language uses and I just find them very helpful for code-conscious ...
9
votes
2answers
2k views
Setting app defaults for iOS 5 Notification Center
Does anyone know how an app can control its defaults in iOS 5 Notification Center? I have written a timer app using local notifications to alert the user when the timer goes off in background. When I ...
9
votes
3answers
1k views
iOS5, UIScrollView and layoutSubviews behaviour
In my app (code very similar to Apple's PhotoScroller demo from WWDC10), I have a UIScrollView. Within the scroll view I have overwridden layoutSubviews with code like:
- (void) layoutSubviews {
...
9
votes
4answers
2k views
iOS 5 Core Data freeze
I try to do the following simple thing:
NSArray * entities = [context executeFetchRequest:inFetchRequest error:&fetchError];
Nothing fancy. But this freezes in iOS 5, it works fine in iOS 4. I ...
9
votes
1answer
996 views
ARC, Blocks and Retain Cycles
Working on an iOS project that targets 4.0 and 5.0, using ARC.
Running into an issue related to blocks, ARC and referencing an object from outside the block. Here's some code:
__block ...
9
votes
1answer
743 views
iOS5 convert project to ARC fails due to “Error in format of file” How to fix?
I got a project with 49 source files that I'm trying to convert to ARC using edit>refactor>convert to arc. I click "pre-check", there are no errors, and the target compiles.
Xcode goes through ...