0
votes
0answers
1 views
Drawing incrementally in a UIView (iPhone)
As far as I have understood so far, every time I draw something in the drawRect: of a UIView, the whole context is erased and then redrawn.
So I have to do something like this to …
0
votes
1answer
6 views
How to get functionality of hidesAccessoryWhenEditing
Since hidesAccessoryWhenEditing is depricated in the iPhone 3.0 SDK, what is the replacement? How do you get the same functionality?
0
votes
1answer
9 views
Where do you set ${EXECUTABLE_NAME} in XCode?
The variable ${EXECUTABLE_NAME} is referenced in my Info.plist and I was wondering where this is set and how I can change it.
Thanks!
0
votes
1answer
16 views
How can I read entries from sqlite with german umlauts on iPhone?
How is it possible to read the German umlaut from an sqlite?
All I get are weird characters.
Thank you!
0
votes
0answers
7 views
UIPickeView ==> Refresh Data?
I tried
reloadComponent and reloadAllComponents
but it doesn't reload anything
the delegate and dataSource are set.
the method "numberOfRowsInComponent" is being called only after …
0
votes
0answers
10 views
Sending a file from iPhone to PHP server and got a blank error returned.
I am developing an iPhone application which uploads a file to a server. The server is appserv Windows server 2008 running on VMWare Server.
Below is the PHP code on the server I a …
0
votes
0answers
12 views
Need advice on implementation for “heavy” operation involving iPhone (a lot of) AddressBook contacts.
Hello everyone,
I am developing an SMS service application. At some point the user has to select the contacts he wants to send the SMS so he has 2 options. "Select all contacts" o …
0
votes
0answers
5 views
Navigation view system with webview problem with touches!
Hello i have search everything and i didn't figure this out!
I have a tab bar controller with 5 navigation controlls, in one of the navigation control, i have a view, with a table …
0
votes
1answer
34 views
Is it possible to define a macro that looks almost like a comment?
I try to make a useful macro for logging. But I find that NSLog and all other sort of macros that carry textual information with them simply distract a lot from the code.
Is there …
0
votes
0answers
8 views
UIView isn’t released. Calling delegate with self, and using UIView commitAnimations adds retain count
I have a view that is added as a subview in a viewcontroller. The subview has delegates methods and the viewcontroller is assinged as its delegate. The subview has a animation and …
0
votes
0answers
5 views
IPhone Configuration : is it possible to configure APN programmatically?
Hello everybody,
in my iPhone app, I would like to switch from an APN (Access Point Name) to another without using a configuration profile. Does Apple allow a dynamic change of AP …
0
votes
3answers
19 views
How to make a macro that takes a formatted string + several additional arguments, just like NSLog?
This is for practise. I try to build something similar to NSLog. Currently I have this:
#define LogThis(info) \
[[MyLogger sharedLogger] logThis:info];\
- (void)logThis:(NSS …
0
votes
2answers
30 views
Which one is best for Iphone REST API or SOAP?
I am working on iPhone Applications. Recently i have used SOAP api to integrate with iPhone application. my main aspect of this particular query is whether SOAP is best or REST is …
0
votes
1answer
6 views
Dynamic initialization of controls in iphone
Hi all,
I am tying to add the values from an array to a number of text boxes in my view. it is possible for me to make it work by implementing
a1.text=[arrayName objectAtIndex:1] …
0
votes
1answer
11 views
How to change Font of UIDatePicker ?
Hi.
I have used UIDatePicker in my app. I want to (actually have to) change the font size (as my app needs) and font family in that datepicker.
Please help, if any body has done …
