0
votes
1answer
90 views
iphone: finding coordinate of CGPath
I have drawn an line graph (as an unclosed path) with 10 (x,y) points by using CGContextBeginPath, CGContextAddLineToPoint and CGContextMoveToPoint .
I would like to be able to retrieve the vertic …
0
votes
1answer
222 views
UIPicker swipes not responding
Hi guys, UIPicker swipes where responding perfectly in the Iphone simulator with SDK 2.2, but i am now testing with a new version of the simulator, and swipes are not working. I went trough the doc …
0
votes
1answer
122 views
iphone: rotating flipped view when rotating visible view.
Hi guys,
I have a resizing issue when rotating a view controller that has two views which I switch between using the flip animation.
The problem appears if i do the following steps:
…
3
votes
How do I detect when someone shakes an iPhone?
This is the basic delegate code you need:
#define kAccelerationThreshold 2.2
#pragma mark -
#pragma mark UIAccelerometerDelegate Methods
- (void)accelerometer:(UIAcceleromete …
0
votes
Is it possible to configure a UITableView to allow multiple-selection?
Use the following code to set up the cell accesory types:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *thi …
0
votes
UIPickerView - 1st row selection does not call didSelectRow
Instead of "pushing" the value of the picker each time you make a selection with this code:
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(N …
0
votes
delay loading of UIWebView in UITabBar app
Use viewDidAppear. This will be sent to the controller after the view fully appears and animations end.
…
0
votes
Tips for a successful AppStore submission?
Don't use images in the tab bar items that resemble an iphone/ipod touch. They use to allow them, but now they are rejecting them. It seems that other apple hardware is not an issue.
…
