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)

-3
votes
1answer
15 views

App not working on iPad but works fine with iPhone simulator [closed]

I developed an app for iPhone. It works great. I wanted the app for iPad as well. So i changed the devices to "Universal". Since the main view of my app are all images. I redesigned the user interface ...
0
votes
0answers
11 views

Is it possible to measure packet loss in an iOS app?

I'm building a portion of an app that will require the user to download files of varying size. Currently, I'm using Apple's Reachability code to let me know if I have a connection. ...
0
votes
3answers
38 views

Take screenshot of current foreground application

I'm using this code to take a screenshot in iOS: - (UIImage*)screenshot { CGSize imageSize = [[UIScreen mainScreen] bounds].size; if (NULL != UIGraphicsBeginImageContextWithOptions) ...
0
votes
0answers
9 views

Universal app acting up on iPad iOS5

I've been working on a universal app. So far everything is good. During final testing it turns out that the app is not working with older OS (5.0 and 5.1). It initially showed a white blank screen. ...
0
votes
0answers
9 views

IOS 5.0 - How to play Videos in a programmatically generated View from a “GameManager”class?

After testing and trying hours and hours i think i need a hint for the solution of my "little" programming problem: I have a GameManger.m class file where I want to programmatically opening a view on ...
0
votes
2answers
25 views

NSArray Values are Display after touche in screen in Tableview

- (void)viewDidLoad { detailView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 330, 380) style:UITableViewStylePlain]; detailView.rowHeight = 55.0f; detailView.dataSource =self; ...
0
votes
1answer
21 views

Caching web page in IOS using NSURLCache subclass

I subclassed NSURLCache and overriden – cachedResponseForRequest: and – storeCachedResponse:forRequest: . I am storing all the files am getting in the application's documents directory. Now, the ...
0
votes
3answers
40 views

How to append the following characters ‡, †, * as superscript to NSString in iOS

I need append the following characters ‡, †, * as superscript to NSString in iOS . Need your help. I use the following http://en.wikipedia.org/wiki/General_Punctuation_(Unicode_block) link but they ...
0
votes
1answer
27 views

iOS top banner notification content customization

concerning iOS5 LocalNotifications: 1: What is the maximim visible length of the message shown in the banner ? Is it possible to make the text size smaller so I can fit longer text ? Is it ...
0
votes
0answers
16 views

Compiler warnings with gtm-oauth, how do I get rid of them?

Here's a picture of the code and the corresponding warnings in the GTMOAuthAuthentication.h file from Google's gtm-oauth Cocoa library. What exactly is causing these warnings? How do I fix them?
0
votes
0answers
11 views

gmt-oauth - still a viable oauth library for iOS?

Is this still the one to use? I realize this is a little subjective, but I've read a lot around StackOverflow and it's been pointed to a fair bit, but I haven't found a lot of recent questions about ...
0
votes
3answers
49 views

Convert address to longitude and latitude

I want to do the following - Allow users to input a physical address in ios app. - This address is converted to longitude/latitude - Django server code checks to see nearby locations. How can I do ...
0
votes
1answer
20 views

iOS 5 won't redirect to Appstore

We have an iOS SDK that is hosted within different applications. Inside the app I have a redirection to Appstore. The redirect is from html code (Webview within the application). Redirection works ...
0
votes
0answers
25 views

How to set EKEvent in calendar, which will repeat yearly for a particular day

i am created the EKEvent and set start date and end date , end date is 20 years from current date, there is no problem in this , but the created event is shown for current year only not for further ...
0
votes
0answers
14 views

How to authenticate Project Server 2013 [Office 365] URL (https://sitename/servername/sites/pwa) using iOS

I am creating an iOS app and want authenticate my Project Online URL using iOS. Currently I am using ASIHttpRequest to authenticate Project Server 2013 On-Premise URL but it is not authenticating the ...
0
votes
1answer
16 views

PhoneGap Media plugins

I am new at Cordova PhoneGap. In my project there is a one requirement.e.g. Capturing video,audio and upload it to server. I found the two plugins are available for do the same task.e.g. To access the ...
1
vote
1answer
24 views

Partial encryption using AES - IOS application

I would like to apply the encryption & decryption technique in one my downloading concept. I want to do the partial encryption using AES 256. Is it possible to do it? is it have any algorithms ...
0
votes
1answer
29 views

Download and cache entire web page on ios

I need to download an entire webPage and store it in app's documents directory and load it from the cache the next time user visits. No matter how much I search, I always end up with ...
0
votes
1answer
45 views

iOS Equivalent of SecTransformRef?

Is there an iOS equivalent to SecTransformRef from the Mac SecTransform.h header file? I am getting a Semantic issue where there is an unknown type name 'SecTransformRef'. It appears that the ...
0
votes
1answer
25 views

How do I make my launch images for iPhone use the user's status bar?

I tried removing the status bar from my Default.png images, but under iOS 6 apps seemingly load with that blue-tinted bar, and since my app uses a black one it doesn't work. For example, the Facebook ...
-1
votes
2answers
28 views

How can i add an event to calendar from my app

I want to add an event to calendar from my app , for example in Iphone contact application user sets birthday , it will automatically added an event to calendar . i want to do this from my app ..
1
vote
4answers
63 views

Open one App from another programmaticaly

We have a standard SAP BI App and we don't have the code for that and our company purchased it for our internal use and now my PM has asked me to open SAP BI App from our custom App programmatically ...
0
votes
3answers
60 views

How to get old UDID in my new upgraded app

I am using UDID to save and retrieve data from remote DB, now apple had depreciated the UDID. Now how can I retrieve already saved data if I update my app with new version which developed using iOS5. ...
0
votes
5answers
85 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" }, ...
0
votes
1answer
17 views

Remove notification observer in superclass or subclass in ios

I have registered for a notification in the superclass. The observer is handled in the subclass which calls the super implementation. Do I remove the observer in the dealloc of the superclass or ...
0
votes
1answer
35 views

How to update the UITableViewDataSource when inserting new sections or deleting sections on UITableView?

I've a UITableViewDataSource which maintains sections of data items which will be presented by an UITableView instance. The table view is editable, allowing insertion and deletion of rows and ...
0
votes
0answers
7 views

Styling UITextView text pre-iOS 6

I'm looking to underline the text of a UITextView (all the text, not a portion of it) and the following works wonderfully on devices running iOS 6 but of course it isn't available on previous OS ...
0
votes
4answers
51 views

iOS 5 UIButton title showing with ellipsis

I have a problem regarding the UIButton title in iOS5. They are clipped and show like in this photo. I don't want them to be clipped, i want to show the full title. In iOS6, they work perfectly. ...
0
votes
0answers
19 views

Relaying appearance method calls in custom container view controller properly

I'm following Apple's guide to build my own custom container view controller. It seems to work just fine out of the box, except for one irritating problem. How exactly do I specify at which time my ...
0
votes
1answer
29 views

Play Audio Player when location speed decreases

How to play audioplayer when location speed greater than 20,count time start for five second and when suddenly location speed (speed decrease from 20 t0 0)equal to zero it play audio player.I try this ...
0
votes
0answers
12 views

How to secure/encrypt data in iOS and Transfer to webServer

My iOS app deals with getting JSON data from webserver, storing in CoreData, and uploading text, images, audio to the webserver, also send PDF attachemnts via email. What are the best ways to ...
0
votes
2answers
40 views

NSPredicate that filters out subclass results

I have two classes, Company and MyCompany. MyCompany is a subclass of Company, and Company is a subclass of NSManagedObject. I am trying to write a predicate for an NSFetchRequest that will return ...
0
votes
0answers
22 views

With YRDropdownView, when I present it after a refresh it gets caught at the top of the screen, and can't be seen

I'm using YRDropdownView to present notifications in my app, in this case when they try to manually trigger a data refresh it will notify them that there's no internet (if there isn't). This refresh ...
0
votes
2answers
28 views

A MKMapView delegate calling issue

I am facing an issue about MKMapView delegate. In iOS5, When I clicked a Pin on the mapview, thedidSelectAnnotationView: delegate will be called first, and the next is viewForAnnotation: delegate ...
2
votes
1answer
56 views

How to monitor data usage on iOS from an app?

There are a few similar questions on SO, but none directly answer this question: how can an app programmatically monitor the data usage of other apps? For instance, at the end of the month, we would ...
1
vote
0answers
22 views

AVCaptureSession preview screen orientation in iOS5

I asked this question a while back. I accepted the answer because it worked... until I tried it out on iOS5. My app is landscape only. Opening the camera preview and holding the device with the home ...
-1
votes
1answer
18 views

AVCaptureVideoPreviewLayer connection crash on iOS5 only [closed]

I'm using some code from Apple's "SquareCam" source code. It runs fine on iOS6, but on iOS5 I get a crash: AVCaptureSession *session = [AVCaptureSession new]; [session ...
0
votes
0answers
9 views

Why is the crop rectangle for existing pictures not square, but newly taken pictures yes?

I have this situation where I want all my images to be upload in a square aspect ratio. When the user is presented the option to add a picture, he can either take it live, or select one from the photo ...
0
votes
3answers
73 views

NSInvalidArgumentException while adding NSDictionary to NSArray

I have declared NSDictionary *dict; globally and trying to add this dictionary into array but got a error Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* ...
0
votes
0answers
38 views

App level VPN connection - Enable in device through coding

I want to connect the VPN server through my app without configure the VPN in device level. It looks like app level VPN connection. It is not a exact vpn client but before open my app, I have to check ...
1
vote
1answer
23 views

Select phone number and e-mail ID in UITextView

I have a UITextView object. The text in UITextView has a phone number, mail link, a website link and also normal text messages. I used dataDetectorTypes to detect links and number. Links and number ...
2
votes
1answer
48 views
+150

Weak Linked Framework Causing “File Not Found” Error

I am building an app that uses the Social.h and Accounts.h frameworks. I have both Frameworks set as optional. I have my Base SDK set as 6.0 I have iOS Deployment Target set as 5.0 When I build ...
0
votes
0answers
6 views

Overriding Storyboard's link detection's behavior (while retaining styling)

I have a view with a number of UITextView instances, some of which use Storyboard's "detect links." What I want to do with some of the others is match that style (blue and underlined) but override the ...
0
votes
0answers
60 views

UIScrollView acting differently on iOS 5 and 6

I have a simple uitableview controller to start my application. I set it up so that there is a segue between this and the next controller. This next controller is a uiviewcontroller containing a ...
0
votes
1answer
6 views

Adding UILabel to UIImageView in CellForRow

I have a customCell in StoryBoard "CategoryCell", I have UIImageView with the cell which is also part of the cell also tied up in StoryBoard. The UIImageView is filled with a plain yellow color. I ...
-1
votes
2answers
26 views

Change buttons' font in inputAccessorView [closed]

I can't find a way to change the font for the buttons in the inputAccessoryView. Can somebody help me with this?
0
votes
2answers
50 views

Update tableView when images loaded asynchronously

I get images asynchronously with parse, and i insert them into an array with some other stuff. I return this array to fill a tableView, and the rows has an UIImageView, but some images that i get ...
0
votes
0answers
34 views

Error when running app in iOS5 for facebook

I am using DeFacebookComposeViewController to share pictures in facebook. It is running fine in iOS6. But have issue running in iOS5. I put a breakpoint in this function: - ...
0
votes
0answers
23 views

iPad (iOS 5.x) - Second rootViewController has the same orientation as the first

In an iOS app for iPads I need the first viewController, set as root, to be stuck in Portrait and the rest of the viewControllers, which will also be set as roots, to have support for all ...
0
votes
0answers
16 views

Lock screen orientation for a single controller when there's a UITabBar in IOS 5 & 6

Following are the main poins I have. I'm new to IOS development I need to support IOS 5 and IOS 6 in my IOS app I have a UITabBarController in AppDeligate file as follows. UIViewController ...

1 2 3 4 5 244