Search Results

1
vote
1answer
223 views

WiFi connection is dropped after user inactivity period

My iPhone application establishes a TCP connection through wifi to a remote server. However, if there is no user activity for a certain time, the device closes wifi and drops the connection. Is it …
4
votes
5answers
684 views

What does 8badf00d mean?

Sometimes my iPhone application crashes with a weird crashlog, that reads exception code is 0x8badf00d. The stacktraces show random snapshots of app execution, but nothing suspicious. This happens …
1
vote

Does the iPhone timeout if a function takes too long to execute?

iPhone imposes a timeout for application launch. So if you perform an extensive processing in applicationDidFinishLaunching: for instance, the application will be terminated and a crash log will be …
13
votes

How to customize the background color of a UITableViewCell?

The best approach I've found so far is to set a background view of the cell and clear background of cell subviews. Of course, this looks nice on tables with indexed style only, no matter with or wi …
0
votes

Best way to re-use a UITableView with dynamic data?

Since you retrieve the data through the network, I would suggest to post a notification after you process it. Your DocumentListController should register for that notification and invoke its table …
1
vote

Getting cursor position in a UITextView on the iPhone?

Use UITextView selectedRange property to find the insertion point when the text view is first responder. Otherwise, when the view is not in focus, this property returns NSNotFound. If you need to k …
0
votes

[iPhone] Play video not in full screen mode

Looking at the MPMoviePlayerController class dump here, you can see these publi …
0
votes

iPhone 3G Connection Enabling

Are you sure you're establising the connection correctly? My application does the same using sockets and it has no problems to re-establish the connection after device sleep. Use Reachability API i …
0
votes

chapters in videos for the iPhone

This is definitely possible sending the non-documented message setCurrentTime to MPMoviePlayerController. It takes one parameter of type double which specifies the playback positio …