Search Results

5
votes

Unique identifier for an iPhone app.

By far the easiest and most appropriate way to obtain a unique identifier is to use the mechanisms Apple explicitly provides for obtaining one - [[UIDevice currentDevice] uniqueIdentifier] …
1
vote

iPhone: Detecting user inactivity/idle time since last screen touch

Ultimately you need to define what you consider to be idle - is idle the result of the user not touching the screen or is it the state of the system if no computing resources are being used? It is …
0
votes

Using default tab-controller created project… first view controller doesn’t respond to addsubview

It also sounds - and feel free to correct me if I'm mistaken - that you're attaching actions in the view loaded by the tab bar to the tab bar's controller. The two entities are quite different and …
1
vote

Best way to generate both “free/demo” and commercial apps from the same source code?

It is also worth noting that if a user decides to upgrade to the full version, if you do not have some mechanism in place to transfer over the existing data you will likely see a negative reaction …
9
votes

Best JSON library to use when developing an iPhone application?

Touch JSON tends to be the best in terms of speed and unit test coverage. It's also the most widely adopted and actively developed. …
1
vote

Toolbar moves up when call finishes

In general setting your auto resize masks properly should fix things. Could you update with a screenshot to show exactly where the resizing issues are happening? …
-1
votes

UIButton in a UITableView header ignores most touches

You should consider that this is not the intended sue of the headerView and that an implementation such as that might result in rejection from the AppStore as a result of a HIG violation. Given th …
3
votes

How can I disallow use of a application feature based on if the device is a 3G or Non-3G device?

The following code with allow you to determine the exact device that is in use but I would first consider the fact that a 3G device may not actually be able to obtain a GPS lock as the process of d …
0
votes

How would you construct and interact with a grid like a Sudoku board?

The grid is a means of viewing contents, not of storing the representation. Ultimately, your grid is made of cells which have contents and therefor your underlying model object is perhaps best emb …
1
vote

Responsibilities of Delegates and Controllers in Cocoa Touch?

A delegate is some object that implements a set of methods which either your application or the framework you link against depends on for functioning. It is a means of implementing a delegation ba …
1
vote

iPhone Documentation - Can I Watch the Getting Started Videos from Linux?

I believe you need to download them from iTunes which requires either a Mac or PC but they are standard mpeg-4 videos and should be viewable in vlc. …
9
votes

How do I detect that an SDK app is running on a jailbroken phone?

It depends what you mean by jailbreak. In the simple case, you should be able to see if Cydia is installed and go by that - something like NSString *filePath = @"/Applications/Cydi …
1
vote

Interface Builder vs. What’s Displayed on iPhone

Hi Keith, Can you verify that the PNG files are saved with a pixel density of 72dpi? Also, what type of UI element are you using? (UIButton, UIImageView, etc). It would help if you could …
1
vote

Why doesn’t an iPhone app’s main() function ever get a chance to finish?

After calling the UIApplicationMain function your application launches (establishing a runloop, etc) and all work should then be done outside the context of main (if you need it to run …