1
vote
Preserving application state across restarts
I was never able to get this approach to work either. What i eneded with was having my own protocol, and having each viewcontroller to be to save/restore the metadata needed for that view (you don' …
6
votes
Problem using NSURLRequest to POST data to server
You should remove the leading & in the myRequestString, and the problem is likely that the correct content-type header is not being sent. try adding a call to
[request setValue: …
0
votes
Inserting and deleting UITableViewCell at the same time not working
I seem to remember that numberOfRowsInSection: will get called when you call deleteRows or insertRow, you need to be really careful that the reality numberOfRowsInSection cliams matches your change …
