1,206 reputation
726
bio website
location
age
visits member for 1 year, 4 months
seen May 20 at 17:57
stats profile views 215

gps based applications development


May
20
comment Ad hoc distribution: App failed to install
@grautzen the best solution for me was to go back online (developer.apple.com) delete all provisioning profiles and certificates and generate them from scratch (first xcode will create certificates, then online you create the provisioning profiles).
May
18
answered How do I wait for a user response when using UIAlertView?
May
18
comment Stop execution and get user's choice on iPad app
indeed, not the only way (lots of workarounds), but the way Apple intended this feature to be used. UPVOTED! :)
May
18
comment ordered comparison between pointer and integer objective-c
another noob mistake (of mine): establishing values in the header (.h) file. initializing variables in the viewDidLoad solved "DUPLICATE SYMBOL" error. UPVOTED! :)
May
18
comment NSStream and Sockets, NSStreamDelegate methods not being called
you nailed it! after removing my socket client from the main thread, i stopped listening to the inputStream (even though my outputStream was still working, as i could monitor on the socket server). i just changed the inputstream`s run loop and bingo! UPVOTED :)
May
17
answered iOS TCP / IP Check connection
May
17
revised Keeping a socket connection alive in iOS
typo "remove end" (sic) which i suppose meant "remote end", thus suggested edit. had to write some more stuff, because edits MUST be 6 chars, at least
May
17
comment Keeping a socket connection alive in iOS
in some cases, instead of "garbage", you might want to consider this as "heartbeat data" on the socket server. UPVOTED! :)
May
17
suggested suggested edit on Keeping a socket connection alive in iOS
May
17
comment Iphone popup alert message
works like a charm. UPVOTED! :)
May
16
comment Image being stretched
imageView.contentMode = UIViewContentModeScaleAspectFit;
May
16
comment How to pass a string to a function in Objective-C
you must consider WHERE the method IS. in case you have NOT created any methods (which is the case) you use [self ...]. if you have a class that contains the method, you use [methodName ...]. UPVOTED! :)
May
16
revised iPhone crash only when device not connected to xcode, how to understand the crash log?
added 47 characters in body
May
16
revised iPhone crash only when device not connected to xcode, how to understand the crash log?
added 9 characters in body
May
16
revised iPhone crash only when device not connected to xcode, how to understand the crash log?
added 399 characters in body
May
16
revised iPhone crash only when device not connected to xcode, how to understand the crash log?
added 399 characters in body
May
16
revised iPhone crash only when device not connected to xcode, how to understand the crash log?
added 995 characters in body
May
16
comment ANDROID - SQLite Database “context” question
ps: for security reasons, a sqlite db only exists inside your application's sandbox, therefore you MUST first have access to said sandbox, a.k.a. CONTEXT.
May
16
answered iPhone crash only when device not connected to xcode, how to understand the crash log?
May
15
answered How do you load a local jpeg or png image file into an iPhone app?