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)

0
votes
0answers
14 views

iOS 5 - CustomPopOver without round corners

I am developing an iPad-App with PopOver-Views ... but the customer wants the popover to be angular (no rounded corners). In iOS 6 I can set wantsDefaultContentAppearance to NO and everything is ...
-1
votes
0answers
26 views

iOS 5 Nav Based App and Landscape

I'm almost ready to submit my new app, but there is one left problem : I have a nav based app, in this app i want only want one controller to be in landscape. --> CustomNavController --> ...
0
votes
2answers
64 views

Discussion, the best way in programming iOS? [closed]

I usually used to do every thing programmatically, what I mean is I am not using the Interface builder instead I do every thing in the code, like UIButton or UITableView, etc.. So can anyone tell me ...
0
votes
1answer
61 views

How to get PDF from HTML Page (UIWebView)

i want to know how to get the PDF from HTML page. Im using the Method UIGraphicsBeginPDFContextToFile(self.filePath, CGRectZero, nil); //creating PDF int i = 0; for (; i < pages; i++) ...
0
votes
2answers
34 views

In which iOS does Facebook Share Dialog work in?

I intend to use Facebook Share Dialog(https://developers.facebook.com/docs/howtos/share-dialogs-ios-sdk/#sharedialog) for my application and interested to know whether it supports iOS5 or it is only ...
0
votes
2answers
30 views

Can't reload MKMapView while doing other tasks

I got my MKMapView running fine on my iOS app. The purpose of the app is to scan a Wifi network for data all the time. Like many times every second. This is just a background task and the user don't ...
0
votes
0answers
26 views

Difference in code in restoring in app purchase in ios 5 and ios 6

I coded the restore transaction for in-app purchases in an iPad ios 5.1.1 and it's working but our client says it's not, they are using iPad 2 ios 6, so my hunch is that it's on the version of device. ...
0
votes
0answers
46 views

openActiveSession fails on iOS 5.1 with 3.5.1 SDK

I am using openActiveSessionWithReadPermissions in my app written with the 3.5.1 SDK.. The code works great most of the time, but on device with iOS 5.1, it does not work.. I already tried resetting ...
0
votes
1answer
84 views

To Search Universal Tweets Via Twitter API v1.1

Hi this might eventually turn out to be a stupid question but i'd rather ask!! Its regarding GET search/tweets Twitter API v1.1. As documented by Twitter this particular API is designed to accept ...
1
vote
2answers
61 views

iOS5,presentModalViewController presenting new view incorrectly

My app mainly supports iOS6+. When considering about iOS5, I added the following judgement. if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0) { self.modalPresentationStyle = ...
0
votes
1answer
29 views

My modal keeps eating memory

I am experiencing a rather serious issue with my iPhone app using ARC. I have a viewcontroller (lets call this A). This viewcontroller opens a navigationcontroller as a modal which runs through 3 ...
0
votes
2answers
55 views

Call a view works in iOS 6 but doesn't in iOS 5

in my project, on map annotation, rightCalloutAccessoryView, I used the following code to connect from mapView to another view, here it is RWStation * temp=[[RWStation alloc]init]; [temp ...
0
votes
1answer
73 views

Is it possible to get a float value with unknown decimal point?

I want to pass a parameter for deciding how many value should come after decimal point like below int decimalpoint=2; NSString *deciPnt=@".2"; NSString *deciPnts=@"2"; CGFloat floatvalue=4.256345; ...
0
votes
1answer
33 views

Get indexpath item of UITableview in ios5

I have seen this topic before ,I know iOS5 has another way to do that, but I couldn't find it. If I using this function in iOS5. (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
2answers
69 views

Get Print preview and save it in PDF file

I want to generate a print preview of a web page and save it to an PDF file. i tried stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"; and ...
0
votes
1answer
46 views

Cannot use a custom font in IOS Application [duplicate]

I am trying to use Accord Light SF Italic font in my application. (Here is the link to the font: http://www.fontpalace.com/font-details/Accord+Light+SF+Italic/) I have added the font to my resources, ...
0
votes
0answers
30 views

change image of cancel button of ZBarReaderController

I have implemented ZBarSDK in my app. Its working fine. But one issue is that I want to add the image to cancel button of uibarbutton item. In One of the class of ZBar Sdk is ZBarController and ...
0
votes
1answer
38 views

When adding several subviews ( > 4), UIButton stops responding to touches

I am creating a modal view in an App, which contains several subviews. Each one of those subviews has a button and an action related to that button. I use a loop to insert each subview in place. The ...
0
votes
0answers
17 views

Customcell with storyboarding issue

i was making an application in storyboard and iam struct with a problem, i wanted to make a tableview for a menu, where cell contains image of food, a label(quantity) and 2 buttons which used as to ...
0
votes
0answers
40 views

Playing video and retrieving pixel buffer with ios5

What I would like to is to play a video (either from a local file and from a remote URL) and its audio track and retrieve the pixel buffer of each frame of the video to draw it to an OpenGL texture. ...
0
votes
1answer
56 views

Trouble hiding iAd banner and displaying UIWebView in its place

When there is no iAd banner to display, we would like to display a UIWebView of the same dimensions pointed to a specific URL. However, hiding the iAd banner and showing the UIWebView doesn't work. ...
0
votes
1answer
91 views

Why does delegate return null? [closed]

I am using Xcode 4.2 iOS SDK 5.0 I am trying to use a protocol that my controller can use to retrieve an NSDate. Why does delegate return null? What is wrong? @protocol HNVyberDatumuDelegate; ...
0
votes
1answer
49 views

How to show or hide small view containing web page in iOS app based on certain conditions?

We're building an iPhone app and using this iAd plugin from PhoneGap: https://github.com/shazron/iAdPlugin/blob/master/SAiOSAdPlugin.m. Because we built the app with HTML5, not Objective-C, and don't ...
2
votes
1answer
64 views

how to open file dialog gallery in a web Asp.net MVC application in with apple browser?

I have an Asp.net MVC Web application which has to run on all web browsers(IE, Firefox, Chrome) , even with Ipad & Android . I have a file dialog where I upload image. The file dialog is disabled ...
1
vote
2answers
74 views

shouldAutorotateToInterfaceOrientation is not working in iOS 5

I saw this stackoverflow post:shouldAutorotateToInterfaceOrientation is not working in iOS 6. The answer was to add a category called RotationIn_IOS6. I have done that and the views for the different ...
2
votes
0answers
81 views

Facebook SDK 3.5 is not working on ios 5.1

I have implemented facebook in my application. It is working on ios 6 but when it os run on ios5 it is giving error as " The operation coudn't be completed (com.facebook.sdk error 2)" Following is my ...
1
vote
1answer
64 views

Implement Menubar at bottom like Tabbar using addChildViewController in iOS 5

i am working with the application which have Custom menu at bottom of the screen (Like Tabbar).Custom Menu will be display in all UIViewController. Ex : i have 6 menu button at bottom. When i click ...
0
votes
1answer
48 views

Encryption using public key

My code: SecKeyRef oPublicKey = [self getPublicKeyRef]; SecKeyRef oPrivateKey = [self getPrivateKeyRef]; CFDictionaryRef myDictionary; CFTypeRef keys[2]; CFTypeRef values[2]; // Initialize ...
0
votes
2answers
44 views

NoSQL for iOS Native? [closed]

I want to store huge amount of images and pdf documents in local database for iPad iBook like app, please suggest the best option. Whether we can use Core Data with SQLite or NoSQL DB like ...
3
votes
1answer
47 views

UIpageviwcontroller load only single view in landscape mode when first time load view

i need help in UIpageviewcontroller for universal application. i add this functionality in my app it works fine but when i load UIpageviewcontroller first time in Landscape mode it shows only single ...
0
votes
1answer
49 views

Moving UIView plane in 2D along with accelerometer and gyro data

Question in one line is i want to apply effect like deepEnd jailbreak app. Details: I have a UIImageView for the background. Above that i have added Gold coin image. What i need to do is when user ...
-4
votes
0answers
36 views

How to create a Hi5 graphics application in ios [closed]

How can I develop high graphics application like NFS, Angry birds using ios simulator. Suggest me the ideas.
-1
votes
1answer
34 views

How to make an inbuild speech function in ios application ??

I'm trying out to change my text to speech. I have used NSSpeechsynthesizer, but its not working properly in all types of english. I'm very new to iOS. Please suggest me the best one. Suggest me the ...
0
votes
0answers
43 views

Why is iOS5 failing to grok 128-bit Bluetooth characteristic UUIDs?

We've got a Bluetooth Low Energy (BLE) app using CoreBluetooth on iOS. The hardware side is using a Texas Instruments CC2540 chip. Here's the problem: An older version of our firmware used 16-bit ...
0
votes
2answers
44 views

CGAffineTransformMakeRotation(M_PI_2) generate error in console: CGAffineTransformInvert: singular matrix

The first time I turn my iphone turns the button. The second time I turn the iphone fails. - (void)configureViewsLandscapeMode { UIDeviceOrientation deviceOrientation = [UIDevice ...
2
votes
3answers
48 views

Converstion of seconds in minutes

i have to change seconds into minutes, hours. I am already using this code: int minutes = floor(seconds/60); int sec = trunc(seconds - minutes * 60); int hours1 = floor(seconds / (60 * 60)); ...
0
votes
1answer
24 views

Compiling for iPhone simulator from command line, to tools are found

I am compiling an open source project (pjsip) from command line. When I do it for the device everything works fine and all the needed tools, compilers etc are found in: ...
4
votes
6answers
118 views

How to evaluate the string equation in ios

Is there way to solve the string equations in ios ? For example Input: NSString * str =@"1+2"; Output: NSInteger result = 3 // i.e sum of 1+2 from str How to go about this and get expected ...
-2
votes
2answers
26 views

how to call url as the app is downloaded or started downloading from appstore in ios [closed]

Hi everyone i am new to iPhone development and i am trying to call a url from my app which is in appstore. As the app starts downloading in device from app store it should call my url. Can we write ...
0
votes
0answers
38 views

Lazy loaded images on PSTCollectionView are overwriting each other when I scroll

I am building an app that displays downloaded images from the web. I have two main requirements, I can't use ARC, and it's targeted towards iOS5 so no UICollectionView. The app loads 4 images at a ...
0
votes
0answers
35 views

Loadrequest: in a Non-Visible UIWebView or load a webPage without using a UIWebView?

Am need to download and cache an entire webPage before navigating to another screen. For caching I have sub classed NSURLCache and and saving the response by overriding ...
0
votes
2answers
61 views

Core plot create dynamic Y axis and display graph very clear

How can i create dynamic y axis by only passing yMin and yMax graph plot automatically and display very clear. For Example my Data is for Y axis 99.7, 99.3, 99.2, 99.0 ,100 . so i want to y axis min ...
0
votes
1answer
34 views

I need to customize the appearance of an uinavigationcontroller (move down the navigation bar) -STORYBOARD iOS5

I am creating an iPAD application for iOS5, which has a root tabbar, and every viewcontroller of the tabbar needs to be a navigation controller. I am having troubles trying to figure out how to ...
0
votes
1answer
111 views

Handling a tableview with static cells and another searchResultsTableView

Originally, I have a main table view controller with a tableview of static cells laid out using Storyboards. Subsequently, I added a SearchDisplayController to this UITableViewController. In my ...
0
votes
2answers
24 views

AutoResizing a button based on title text content

So I have a strange issue which could be a bug or me being stupid. I have a button in a cell. The cell shows the logged in users facebook friends. If they are already a user of the app it shows the ...
0
votes
1answer
27 views

Managing version files of Core data model

During development process we keep on changing core data model file.Supposing we have many model files each built on previous version. Then At the time of submitting the app to appstore can I delete ...
1
vote
1answer
61 views

Set UITableView BackgroundColor Universally with UIAppearance

I'm trying to universally change the background color for my table views. It is a combination UINavigationController and TabBarController app. I've tried putting the following in AppDelegate ...
-2
votes
1answer
32 views

Add button “More” to show another button on UITabbarcontroller

I want to show more 2 "button" when touch in a tab on "UITabbarController", how can I do that. I use UIActionSheet but when I call [choiceSheet showInView:[self.view window]]; [choiceSheet ...
0
votes
0answers
50 views

AIR Native Extension failing on NSDictionary objectForKeyedSubscript in iOS 5.1

Creating an Adobe AIR Native Extension that uses the following objC code will crash in iOS 5.1 NSDictionary *value=[NSDictionary dictionaryWithObjectsAndKeys: @"aSampleValue",@"aSampleKey",nil]; ...
0
votes
1answer
43 views

Present UIPopoverviewcontroller

I am working on a app, which uses UIPopoverController, I am getting a problem in presenting that popover, I have a UIView which is added on self.view, and a tableview added on that view, that table ...

1 2 3 4 5 244