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

learn more… | top users | synonyms (3)

17
votes
4answers
11k views

How can you disable the iOS Notification Center within your App?

If you have a full screen iOS app and you want to prevent the notification center from being pulled down, can you and how? Also can you block notification alerts or banners from displaying while ...
17
votes
2answers
2k 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, ...
16
votes
4answers
29k views

How can I manually switch between UIViewControllers in storyboard?

All I need is to view a UIView controller in same storyboard file manually with code. I use storyboard to make all forms and connections. My application starts in navigation controller, which provides ...
16
votes
4answers
12k views

Xcode 4.2 iOS Empty Application and storyboards

I'm an Xcode newbie, and I'm trying to make my first training app. Since apparently Empty Application template is the only template that offers pre-integrated Core Data, I choose that. However, after ...
16
votes
2answers
4k views

Should I be worried about rumors that Apple will stop using Google Maps in iOS6? [closed]

Almost every major news media outlet is reporting that Apple will stop using Google Maps services in iOS6. I don't think anyone really knows what exactly the changes are, when they will be rolled out, ...
16
votes
3answers
1k views

How can i Open Serial Port of Dock connector in iOS 5.0.1

I can successfully open the serial port of iPhone/iPad in lower version than iOs 5. with the use of open("/dev/tty.iap", O_RDWR | O_NOCTTY | O_ASYNC)) but i got error "Operation not permitted" in ...
15
votes
3answers
13k views

Does iOS 5 have garbage collection?

Do I no longer have to worry about memory management iOS 5 onwards? Also, will all programs written for iOS 4 and earlier versions have to be rewritten to allow iOS to manage the memory for you?
15
votes
6answers
22k views

nsjsonserialization in ios5?

I have been reading that there is a now library in ios 5 that allows you to serialize & deserialize JSON data. I can't for the life of me find examples or the framework in my /Developer folder. ...
15
votes
5answers
13k views

Using Multiple Storyboards in iOS

My objective is to create a tabbed application, then the view for each of the tabs are constructed in separate storyboards. ** I can't upload image here so i put them into box.com ** My ...
15
votes
4answers
12k views

Perform Segue on ViewDidLoad

In iOS 5 I have a Storyboard with a modal view controller, that I would like to display if its the user's first time in the app, after that I would like to skip this view controller. I set an ...
15
votes
2answers
7k views

Automatic Reference Counting: Pointer to non-const type 'NSError *' with no explicit ownership

In updating some of my code to be in compatible with the iOS 5 SDK, I attempted to refactor my code by using "Convert to Objective-C ARC" in Xcode and received an error. The error occurs on an ...
15
votes
4answers
7k views

UITabbarcontroller in IOS5 throws UIViewControllerHierarchyInconsistency exception

I have the following code for the UITabbarcontroller: NSMutableArray *arr = [[NSMutableArray alloc] init]; tabBarController = [[UITabBarController alloc] init]; FirstViewController *firstview = ...
15
votes
4answers
632 views

Declaration/definition of variables locations in ObjectiveC?

Ever since starting to work on iOS apps and objective C I've been really puzzled by the different locations where one could be declaring and defining variables. On one hand we have the traditional C ...
15
votes
2answers
11k views

Code signing is required for product type 'Application' in SDK 'iOS5.1'

I am using xCode 4.3.1. After i created a project, i build it and tried to Archive. Then i got an error saying; (This is my first project in xCode 4.3.1) CodeSign error: code signing is required ...
15
votes
3answers
3k views

-[Not A Type retain]: message sent to deallocated instance

I have converted my app to use ARC. Before I had the following line of code: NSArray *colors = [NSArray arrayWithObjects:startColor, endColor, nil]; Since the implicit conversion of a ...
15
votes
2answers
4k views

Core Data's NSPrivateQueueConcurrencyType and sharing objects between threads

iOS 5 introduced a new way to quickly fetch data on a background thread by initializing the MOC using NSPrivateQueueConcurrencyType and then doing the fetch in performBlock: One of the rules of thumb ...
15
votes
4answers
8k views

AVFoundation iOS 5

My apps runing on the appstore are using mp3 and video files that don't work since iOS5 update. I've installed xcode 4.2 and... When I test in the iPhone 5 Simulator or device I get the following ...
15
votes
2answers
6k views

My iphone App got rejected with this reason “We found that your app does not follow the iOS Data Storage Guidelines,…”

My iphone app has got rejected recently & with below mentioned reason : "We found that your app does not follow the iOS Data Storage Guidelines, which is not in compliance with the App Store ...
15
votes
2answers
938 views

Implementing and Troubleshooting Background Audio in iOS

There are a lot of questions relating to background music playback in iOS on StackOverflow. None fully explore all edge cases, the aim of this question is to be the final word in background audio ...
15
votes
1answer
3k views

How Nike+ GPS on iPhone receives accelerometer updates in the background?

The new Nike+ GPS application for iOS 5 is able to process accelerometer events in the background (thus allowing for indoor treadmill tracking). How is this possible? When I put my application in ...
15
votes
1answer
291 views

Objective-C: NSLinguisticTagger “new york” vs “New York”

I just started playing around with NSLinguisticTagger basing my code on this blog: NSLinguisticTagger @ NSHipster.com NSLinguisticTaggerOptions options = NSLinguisticTaggerOmitWhitespace | ...
15
votes
4answers
2k views

How to attach 5 images to a Facebook feed post using Facebook ios sdk 3.0

I'm trying to post to the user's feed something like this (it initially shows only one image but when you click "show more" you see all five images) My code looks like this : NSMutableArray ...
14
votes
5answers
5k views

Reordering view controllers in a UITabBarController, all defined in a Storyboard

I'd like to change the order of view controllers attached to a UITabBarController, within my Storyboard, without disconnecting all view controllers and reconnecting them in the desired order. My ...
14
votes
3answers
3k views

ios 5 UISearchDisplayController crash

I am implementing a UITableView with UISearchDisplayController in xcode 4.2. UITableView & UISearchDisplayController are created in StoryBoard. I set the Cell Identifier (SampleCell) for ...
14
votes
5answers
11k views

Is it possible to Turn page programmatically in UIPageViewController?

Is it possible to Turn page programmatically in UIPageViewController , it possible ? thank, for advise.
14
votes
2answers
8k views

How to set font & color of the title in UINavigationBar using iOS5 appearance API?

I have a multiple View Controllers and i want to set the font color of all to red. [[UINavigationBar appearance] setFont:[UIFont boldSystemFontOfSize:12.0]]; is throwing an unrecognized selector ...
14
votes
5answers
9k views

autoshrink on a UILabel with multiple lines

Is it possible to use the autoshrink property in conjunction on multiple lines on a UILabel? for example, the large text size possible on 2 available lines.
14
votes
2answers
19k views

How does UIEdgeInsetsMake work?

I'm making an app where I use UIEdgeInsetsMake for resizableImageWithCapInsets, but I don't understand how does it works exactly, UIEdgeInsetsMake has 4 arguments: Bottom Top Left Right But ...
14
votes
4answers
12k views

Stretching an UIImage while preserving the corners

I'm trying to stretch a navigation arrow image while preserving the edges so that the middle stretches and the ends are fixed. Here is the image that I'm trying to stretch: The following iOS 5 ...
14
votes
1answer
8k views

Why is accelerometer:didAccelerate: deprecated in IOS5?

The release of IOS5 has this core function listed as deprecated. Does anyone know what will replace it? I'm assuming that apple is not going to remove the accelerometer from iPhone 5.
14
votes
2answers
4k views

Do I have to call addSubview after calling addChildViewController?

I'm trying to create a container view controller using iOS5 and new methods like addChildViewController. Do I have to call addSubview after calling addChildViewController? Do I have to call ...
14
votes
2answers
5k views

Storyboard - UITabBarController

I was playing around with iOS 5 and storyboards today. I currently have it so that the main storyboards starts with a uitabbarcontroller then a navigationviewcontroler and finally a uiviewcontroller. ...
14
votes
2answers
6k views

iOS 5 : -viewWillAppear is not called after dismissing the modal in iPad

I am presenting modal using the following code : AddName *add = [[AddName alloc] initWithNibName:@"AddName" bundle:nil] add.modalPresentationStyle = UIModalPresentationFormSheet; [self ...
14
votes
4answers
2k views

Customize UINavigationBar font

I'm trying to customize my UINavigationBar font, using the following code for iOS 5 in my app delegate's application:didFinishLaunchingWithOptions: if ([[UINavigationBar class] ...
14
votes
3answers
523 views

Debugging Only Obj-C/C in Xcode 4.3?

Now that I've upgraded to Lion and Xcode 4.3.x, the debugger is stepping into the ARC stuff. So I'm seeing a screen full of libobjc.A.dylib`objc_retainAutoreleasedReturnValue: 0x1de7fe0: pushl %ebp ...
13
votes
3answers
7k views

Customizing Left & Right UISegmentedControl Buttons

I'm trying to customize the following segmented control, using a left image for the first button and a right image for the second button. How would I do this using UIAppearance? I want to change the ...
13
votes
2answers
11k views

How do you use setTitleTextAttributes:forState in UIBarItem in iOS 5.0?

How do you use setTitleTextAttributes:forState in UIBarItem in iOS 5.0? How do you set the dictionary? Can´t make it work and documentation isn´t very clear about that... From the documentation: ...
13
votes
4answers
17k views

How pass data in seque ios5 storyboard uitableview to detail view

I'm creating an app in ios5 using storyboards. I have a tableviewcontroller embedded in a navigation controller and when you click on the cells in the tableviewcontroller some detail about that cell ...
13
votes
3answers
14k views

iOS 5 storyboard, programmatically determine path

I'm having trouble to achieve the following using a storyboard: When setup is not done: run app -> show settings view controller -> show main navigation controller When setup is done: run app -> show ...
13
votes
7answers
4k views

ARC, worth it or not?

When I moved to Objective C (iOS) from C++ (and little Java) I had hard time understanding memory management in iOS. But now all this seems natural and I know retain, autorelease, copy and release ...
13
votes
2answers
7k views

What is NSManagedObjectContext's performBlock: used for?

In iOS 5, NSManagedObjectContext has a couple of new methods, performBlock: and performBlockAndWait:. What are these methods actually used for? What do they replace in older versions? What kind of ...
13
votes
4answers
4k views

Get the extension of a file contained in an NSString

I have an NSMutable dictionary that contains file IDs and their filename+extension in the simple form of fileone.doc or filetwo.pdf. I need to determine what type of file it is to correctly display a ...
13
votes
4answers
7k views

How to Implement Custom Table View Section Headers and Footers with Storyboard

Without using a storyboard we could simply drag a UIView onto the canvas, lay it out and then set it in the tableView:viewForHeaderInSection or tableView:viewForFooterInSection delegate methods. How ...
13
votes
4answers
9k views

Login Screen with Storyboarding possible?

I am playing around with the new iOS 5 features and trying to rewriting one of my apps as pure iOS 5 app using the new storyboarding feature. To cut a long story short, I have a start screen where ...
13
votes
3answers
6k views

iOS 5.0 Safari not vertically centering placeholder in text box

I want to vertically center the text entered in input text boxes on the page. Typical way to achieve this is to set the line-height and height equal. This works on pre iOS 5.0 Safari. However; on ...
13
votes
2answers
5k views

Draw a circle of 1000m radius around users location in MKMapView

(Using iOS 5 and Xcode 4.2) I have an MKMapView and want to draw a circle of 1000m radius around the user location. On the surface it would seem that implementing the mapView:viewForAnnotation: map ...
13
votes
1answer
4k views

iOS 5 Instance variables

I'm slightly confused as to how ARC works, I know there is automatic reference counting but does this functionality work even for assigning raw instance variables (not using the properties). For ...
13
votes
1answer
7k views

custom uitableviewcells in storyboard

I think I got all the steps down but I must be missing something because I can't make a connection from the labels in the cell to the code. Here's what I'm doing: set style of cell to custom ...
13
votes
7answers
7k views

UIStoryboardPopoverSegue opening multiple windows on button touch

I'm using a UIStoryboardPopoverSegue to present a popover for an iOS 5 iPad app. The Segue works great, but it seems like the toolbar that contains the button is a passthrough view for the popover ...
13
votes
2answers
4k views

What is the best way for supporting both screen resolution of iPhone4 and iPhone5 ? - Auto layout in only iOS6

Have anyone figured out how to support both screen resolution iPhone4 and iPhone 5 ? In iOS6 we have support of Autolayout. Can that be used for iPhone4-iPhone5 screen i.e. 320x480 and 320x568. If ...

1 2 3 4 5 244