42
votes
8answers
3k views
UIImagePickerController, UIImage, Memory and More!
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a UIImageView). Here is …
15
votes
2answers
2k views
Dispelling the UIImage imageNamed: FUD
I see a lot of people saying imageNamed is bad but equal numbers of people saying the performance is good - especially when rendering UITableViews. See this SO question for example or this article on …
8
votes
2answers
2k views
Adding the “Clear” Button to an iPhone UITextField
How do you add that little "X" button on the right side of a UITextField that clears the text? I can't find an attribute for adding this sub-control in Interface Builder in the iPhone OS 2.2 SDK.
…
5
votes
3answers
558 views
When does a touchesBegan become a touchesMoved?
When you drag a finger across the iPhone touchscreen,
it generates touchesMoved events at a nice, regular 60Hz.
However, the transition from the initial touchesBegan event
to the first touchesMoved …
5
votes
1answer
1k views
Is there any ready-made calendar control for iPhone apps?
I am building an applicaiton for the iPhone that will display upcoming and past events. I settled for a list view, but then I realized that a calendar (just like the one displayed in the "month" view …
5
votes
3answers
315 views
What is your iPhone app testing strategy?
Before submitting to the App Store, it is a good idea to test the App once again precisely. I tend to install my App on a device and give it a friend for a while. Then I take the feedback and start …
5
votes
5answers
470 views
Why should I write [anView release], anView = nil; rather than [anView release]; ?
Somewhere I was reading that - regarding low memory warnings and giving up an non-visible view with all it's subviews (= a whole nib, I think), you should do that:
-(void)dealloc {
[anView …
4
votes
3answers
153 views
How much does it matter if I create a NSMutableArray with capacity=3 instead of capacity=50?
I wonder if this affects performance or memory consumption a lot. I need an NSMutableArray, and at the beginning I can only guess how many objects will be added. About 3 to 5 maybe. So I create it …
4
votes
1answer
1k views
UILabel: vertical alignment
Hi,
I have an UILabel with two lines. Sometimes it's text is short. Then the text gets displayed in the center (vertically) of the UILabel.
How do I align my text at the top (vertically)?
…
4
votes
3answers
974 views
Retrieving a pixel alpha value for a UIImage
I am currently trying to obtain the alpha value of a pixel in a UIImageView. I have obtained the CGImage from [UIImageView image] and created a RGBA byte array from this. Alpha is premultiplied.
…
4
votes
2answers
892 views
iPhone: Tracking/Identifying individual touches
I have a quick question regarding tracking touches on the iPhone and I seem to not be able to come to a conclusion on this, so any suggestions / ideas are greatly appreciated:
I want to be able to …
4
votes
3answers
2k views
View Controllers: How to switch between views programmatically?
In short: I want to have two fullscreen views, where I can switch between view A and view B. I know I could just use an Tab Bar Controller, but I dont want to. I want to see how this is done by hand, …
4
votes
4answers
1k views
UITableViewCell: How to prevent blue selection background w/o borking isSelected property?
I have a custom UITableViewCell subclass. I have set the contentView of my cell subclass to
a custom UIView class in which i am overriding -drawRect: and doing all of the drawing there.
Also, I am …
4
votes
2answers
601 views
How can I add CGPoint objects to an NSArray the easy way?
I have about 50 CGPoint objects that describe something like a "path", and I want to add them to an NSArray. It's going to be a method that will just return the corresponding CGPoint for an given …
4
votes
2answers
519 views
What describes the Application Delegate best? How does it fit into the whole concept?
Well I think to know what the App Delegate does. It has some nice methods like -applicationDidFinishLaunching which will be called when the app has finished launching, and so on. But what's that …
