Tagged Questions

71
votes
7answers
20k views

How do I [legally] get the current first responder on the screen on an iPhone?

I submitted my app a little over a week ago and got the dreaded rejection email today. It reads as follows: Dear -----------, Thank you for submitting --------- to the App Store. ...
40
votes
1answer
8k views

How To Make iPhone App compatible with multiple SDK (firmware) versions

With iOS4 coming out soon, I have already planned to include an iAd in a future update of an app of mine. I assume that this will make my app unusable for anyone on a firmware lower than 4.0. Is there ...
40
votes
5answers
7k views

How do you optionally use iPhone OS 3.0 features in a 2.0 compatible app?

I'd like to use some features of iPhone OS 3.0 in my 2.0 app when it runs on a 3.0 device. I don't want to go 3.0 all the way because there are customers who do not want to update yet. I experimented ...
33
votes
12answers
29k views

How to intercept touches events on a MKMapView or UIWebView objects?

I'm not sure what i'm doing wrong but I try to catch touches on a MKMapView object. I subclassed it by creating the following class : #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> ...
25
votes
6answers
11k views

How do you prompt the user to rate your iphone app without waiting for them to delete the app?

I am referring to the popup window that asks the user to submit a review/rating. I know it can be done since the Aardark app does it...it asks several times in fact! (Almost too spammy.) But there ...
24
votes
12answers
12k views

Center content of UIScrollView when smaller

I have an UIImageView inside a UIScrollView which I use for zooming and scrolling. If the image/content of the scroll view if bigger than the scroll view everything works fine. However, when the image ...
23
votes
5answers
51k views

Code Sign error: The identity 'iPhone Developer: x Xxxxx' doesn't match any identity in any profile

I get this build error when I build my iPhone project to run on my device: **Code Sign error: The identity 'iPhone Developer: x Xxxxx' doesn't match any identity in any profile** My development ...
22
votes
3answers
13k views

Way to update iPhone SDK without having to re-download Xcode?

Silly question - but is there a way to download the iPhone SDK without Xcode when Apple releases an update?
21
votes
15answers
23k views

iPhone Simulator: SpringBoard failed to launch application with error: 7

Building an iPhone project results in: Failed to launch simulated application: SpringBoard failed to launch application with error: 7 And the app doesn't install on the simulator. What's this ...
18
votes
14answers
17k views

UIView doesn't resize to full screen when hiding the nav bar & tab bar

I have an app that has a tab bar & nav bar for normal interaction. One of my screens is a large portion of text, so I allow the user to tap to go full screen (sort of like Photos.app). The nav ...
16
votes
5answers
4k views

Great UIKit/Objective-C code snippets

New to Objective-C iPhone/iPod touch/iPad development, but I'm starting to discover lots of power in one-liners of code such as this: [UIApplication sharedApplication].applicationIconBadgeNumber = ...
16
votes
1answer
9k views

Easiest way to support multiple orientations? How do I load a custom NIB when the application is in Landscape?

I have an application in which I would like to support multiple orientations. I have two .xib files that I want to use, myViewController.xib and myViewControllerLandscape.xib. myViewController.xib ...
15
votes
4answers
6k views

How can my server securely authenticate iPhone in-app purchase?

Look at Apple's diagram for the server purchase model. In step #9, how can the server know that it is really talking with an iPhone that is entitled to the purchase, and that Eve is not performing a ...
14
votes
2answers
5k views

What is second param of NSLocalizedString()?

What is the *comment parameter in: NSString *NSLocalizedString(NSString *key, NSString *comment) If I do this NSLocalizedString(@"Hello_World_Key", @"Hello World") and have two versions of a ...
13
votes
15answers
9k views

iPhone StoreKit - invalid product id's

I'm trying to test In App Purchase within the sandbox environment. In order to test the code I did the following: Created an In App Purchase Test User account under 'Manage Users' in iTunes Connect ...
12
votes
5answers
2k views

Detecting the iPhone's Ring / Silent / Mute switch using AVAudioPlayer not working?

I've tried using these methods in an attempt to detect that the Ring/Silent switch is active or not: How to programmatically sense the iPhone mute switch? AVAudioSession category not working as ...
12
votes
1answer
2k views

iPhone & iPad - two icons and two plists?

I have a product with two targets, one for iPhone and the other for iPad. I will build two separate applications, not universal. As I will have to have two icon.png files for the application's icon, ...
12
votes
4answers
25k views

Learning the basics of UIScrollView

I've been having a very hard time finding good examples of UIScrollView. Even Apple's UIScrollView Suite I find a bit lacking. I'm looking for a tutorial or example set that shows me how to create ...
12
votes
4answers
5k views

idleTimerDisabled not working since iPhone 3.0

I have used: [UIApplication sharedApplication].idleTimerDisabled = YES; in a number of Apps developed and running under iPhone OS 2.x and never had any problems with it. They were clock apps so ...
11
votes
4answers
18k views

How can an iPhone access another non-iPhone device over wireless or bluetooth?

I'm trying to figure out if an iPhone can connect to another non-iPhone device over wireless or bluetooth and have seen conflicting information. Much of what I've found was before version 3.0 of the ...
10
votes
3answers
2k views

Lower iPod volume to play app sound (like the native SMS app)

I've made an iPhone app to be used while exercising. It plays a bell tone to indicate that you (the user) should switch from one step of your exercise routine to the next. I've designed the app so ...
10
votes
6answers
4k views

Grouped style setting not taking effect from IB, UITableView

I've created a table view in an iPhone app using Interface Builder (IB). My table style is set to Grouped, and displays that way in IB. However, whenever I build and run, it shows up as a Plain style ...
10
votes
4answers
25k views

Sending POST data from iphone over SSL HTTPS

In my iphone project i need to pass the user name and password to a web server,previously i pass data using GET method and used the url with GET format (eg: ...
10
votes
7answers
6k views

Iphone OS Version 3.0.1 (7A400) - not supported by latest version of XCode

I am very new to IPhone development. I have upgraded my IPhone to the latest version 3.0.1 (7A400). I have also downloaded the latest version of the SDK - but the latest version of the OS that XCode ...
10
votes
5answers
7k views

iPhone Animated Loading Screen

Is there a way to have an animated loading screen for my iPhone application as opposed to the Default.png that I currently am using?
10
votes
2answers
9k views

How do I fix NSURLErrorDomain error -999 in iPhone 3.0 OS

I am trying to update my iPhone app to work with OS 3.0. I have a UIWebView that shows a page fine. But when I click a link it calls my delegate for didFailLoadWithError and the error is Operation ...
9
votes
2answers
4k views

Can I change the color of auto detected links on UITextView?

I had a UITextView that detects phone numbers ans links, but this overrides my fontColor and change it to blueColor. Is there a way to format the color of auto detected links, or should I try a manual ...
9
votes
3answers
3k views

iPhone p2p - Is there a way to connect to more than 1 devices?

Is it possible to connect to more than 1 devices using the new GameKit framework? Till now all the examples I've seen show how we can connect to 1 device. Even the default connection interface lets ...
8
votes
3answers
695 views

How to extract orientation information from MOV videos created on the iPhone using ffmeg, ruby or objectivec?

After surfing through tons of documentation on the web it seems that the iPhone always shoots the video at a 480x360 aspect ratio and applies a transformation matrix on the video track. (480x360 may ...
8
votes
1answer
281 views

Out-Of-Memory while doing Core Data migration

I'm migrating a CoreData model between two versions of an application. I was storing binary data as blobs in the previous version and I want to take them out of the blobs for performance. My issue is ...
8
votes
5answers
3k views

Prevent a UISearchDisplayController from hiding the navigation bar

Whenever a user begins editing a UISearchDisplayController's search bar, the search controller becomes active and hides the view's navigation bar while presenting the search table view. Is it possible ...
8
votes
4answers
4k views

Border around UITextView

I want to have a thin gray border around UITextView, I have gone through documentation but couldn't find any property there. Please help.
8
votes
1answer
5k views

How to renew an iPhone development certificate?

My development certificate has expired. What is the correct method of renewing it? Do you revoke the expired certificate & submit a new Certificate Signing Request? Do provisioning profiles have ...
8
votes
4answers
3k views

Categories in static library for iPhone device 3.0

I have categories in my static library. Any application developer should set -ObjC flag to "Other Linker Flags" to use my static library properly. It works fine for iPhone device/iPhone Simulator 2.x ...
8
votes
5answers
10k views

can Jailbroken iphone used for development

Hi We have paid developer account for iphone development and we have 2 iphones one jail broken and other one non jail broken. We have registered both phones for development and got provisioning ...
7
votes
3answers
3k views

Resulting lines of UILabel with UILineBreakModeWordWrap

I have a UILabel whose size is calculated with sizeWithFont: method. The line break mode is set to UILineBreakModeWordWrap (same flag is used when calculating the size with sizeWithFont:)... ...
7
votes
3answers
5k views

What iPhone OS APIs could I use to implement a transition animation similar to the iBook page flip transition?

I'm building an iPad app that will have multiple paper pages and I'd like to implement a page transition affect that is similar to the animation you see when you turn pages in the iBooks app on the ...
7
votes
1answer
5k views

iphone - How do I add videos to iPad simulator?

No, dropping the videos to ~/Library/Application Support/iPhone Simulator/3.2/Media/DCIM/100APPLE does not work totally, because the simulator can see the video on Photos.app, but when I try to ...
7
votes
4answers
4k views

Displaying ppt, doc, and xls in UIWebView doesn't work but pdf does

It looks like a few people on stackoverflow get this to work but their code isn't posted. I'm using [web loadData:data MIMEType:MIMEType textEncodingName:@"UTF-8" baseURL:nil]; where MIMEType is: ...
7
votes
2answers
2k views

Core Data: Reset to the initial state

I have an object, I make some changes to it, but I don't want to save them, I want the 'old' values. I've tried with: [managedObjectContext rollback]; [managedObjectContext redo]; ...
7
votes
7answers
14k views

iPhone UILabel text soft shadow

I know soft shadows are not supported by the UILabel out of the box, on the iPhone. So what would be the best way to implement my own one? EDIT: Obviously I will subclass the UILabel and draw in the ...
7
votes
3answers
1k views

Best way to check if an iPhone app is running for the first time

I want to check if my iPhone app is running for the first time. I can create a file in the documents folder and check that file to see if this is the first time the app is running, but I wanted to ...
7
votes
5answers
4k views

iPhone: Detecting Tap in MKMapView

How do I detect a single tap on an instance of MKMapView? Do I have to subclass MKMapView and then override the touchesEnded method? Thanks, -Chris
7
votes
5answers
17k views

how do I detect the iPhone orientation before rotating

In my program I'm moving things based on rotation, but I'm not rotating the entire view. I'm Using : static UIDeviceOrientation previousOrientation = UIDeviceOrientationPortrait; - ...
6
votes
1answer
262 views

PresentModel View Controller Problem

Hi Every one I have have a problem with present model view Controller. Here's the scenario: This is navigation bar application I have a UIViewController class in which I add another class of UIView ...
6
votes
2answers
336 views

Localization for iPhone apps - what's your approach?

In general I know how to do the Localization of iOS apps, the only thing is to choose between available ways and do it the right way. So I'd like to ask you about your l10n approach for your projects. ...
6
votes
3answers
1k views

Testing on iOS 3.x using XCode 3.2.5

I am using XCode 3.2.5. Due to a problem in Flurry I would realy like to test my apps on iOS 3.x, and since I updated all my test devices to 4.x I don't have any 3.x handsets left. I have tried to ...
6
votes
3answers
1k views

Google Analytics within iPhone SDK 4 Built App

Three questions for iPhone developers using Google Analytics within their apps for tracking use of their apps: Will using Google Analytics cause us to be in breach of the terms and conditions of the ...
6
votes
2answers
5k views

Change the background image in cocos2d

I am making a game using cocos2d. in that I want to change the background after each second of time. I don't know how to do this in cocos2d. I am having 15 different images and one by one each image ...
6
votes
3answers
2k views

how to hide the keyboard programatically in iphone

How to hide the keyboard programatically in iphone ?

1 2 3 4 5 42