3
votes
3
votes
UIImage rounded corners
You aren't actually doing anything other than scaling there. What you need to do is to "mask" the corners of the image by clipping it with a CGPath. For instance -
- (void)drawRe …
5
votes
iPhone OS Utility App - Flipside View and Main View communication
Ultimately you should be updating some underlying object with the values from the controller. In general, the slider belongs in the view layer - it's a display element. The action that adjusting t …
0
votes
CATransition showing a single frame from the end of the transition before the animation starts
To begin to answer your question more information is needed - for instance, how are you calling that code (e.g. is it bound to a button as an action or is it triggered automatically somehow), have …
5
votes
Cocoa Graphing/Plotting Framework that Works on iPhoneOS
If all you need to do is draw line graphs, take a look at the Seismic example that Apple posted - you can yank large quantities of code from that.
…
0
votes
Using default tab-controller created project… first view controller doesn’t respond to addsubview
It also sounds - and feel free to correct me if I'm mistaken - that you're attaching actions in the view loaded by the tab bar to the tab bar's controller. The two entities are quite different and …
1
vote
Best way to generate both “free/demo” and commercial apps from the same source code?
It is also worth noting that if a user decides to upgrade to the full version, if you do not have some mechanism in place to transfer over the existing data you will likely see a negative reaction …
3
votes
In CocoaTouch (iPhone OS) how do I find/eliminate leaks that the Instruments Leak tool doesn’t find?
You should also run your application with the memory monitor instruments to see overall system usage on the device.
…
10
votes
Hidden UINavigationController inside UITabBarController
It sounds as though you have a mess on your hands. A UINavigationController is a distinct object that is very different from a UITabBarController. In general, your appli …
1
vote
Toolbar moves up when call finishes
In general setting your auto resize masks properly should fix things. Could you update with a screenshot to show exactly where the resizing issues are happening?
…
1
vote
iPhone - debugging “pointer being freed was not allocated” errors
I generally use NSZombie for such things, check this out
…
-1
votes
UIButton in a UITableView header ignores most touches
You should consider that this is not the intended sue of the headerView and that an implementation such as that might result in rejection from the AppStore as a result of a HIG violation. Given th …
1
vote
How do I generically use KVC to update fields?
You should do the conversion yourself with a number formatter, it gives you finer control than anything that the framework might consider to be appropriate. It is also, probably, not a good idea to …
-2
votes
Why does Xcode keep changing its active executable?
So.. why are you actually doing that? It is probably better, given the nature of the iPhone (with multiple frameworks for multiple architectures), to set up different Targets for your various proj …
0
votes
Another appropriate use of @property design question
A property should map, intuitively if not exactly, to some storage mechanism of your class - be it an ivar declared in your @interface or something synthesized by the runtime. The act …
