Tagged Questions

-1
votes
2answers
62 views

iPhone Background App in Ad-hoc distribution?

I need to be able to ensure that the iphone is always connected to a network. If it loses reception I need to be able to warn the user. Since the only way I see this working is usi …
0
votes
2answers
112 views

RESTful APIs in Django for GETTING information from a server

Any idea of a RESTful APIs in Django for GETTING information from a server? What I want to do is fetch the errors from the server into a database. For example: The Live server …
0
votes
3answers
139 views

Is this considered as using private functions in iPhone dev, and thus illegal?

I'm trying to disable scrolling for a UIWebView and the only way i found is using this way: #import <objc/runtime.h> id scroller = [[Webview subviews] lastObject]; int coun …
0
votes
1answer
129 views

can i access ipod library using hidden api’s which apple does’nt allow to use ?

hi, i have searched alot , about how to access video files stored in ipod library using iphone sdkl, i found an article saying that apple does'nt allow you to access ipod or othe …
0
votes
5answers
316 views

Asynchronous APIs

Hi, When trying to implement a asynchronous API calls / Non-blocking calls, i know a little in a All Plain-C applicaiton I have, i read a about APM(Asynchronous Programming Model …