I'm trying to get a basic flip animation transition working when I push a controller inside a navigation. The code below flips the view, however the view appears first (each element fades in), and then the flip occurs. Is it possible to do a flip animation with a UINavigationController?
Any pointers would be great, the examples I've fou...
Hi I have a UIView to which I add a UIButton in its initWithFrame: method like this:
UIButton * dropB = [UIButton buttonWithType:UIButtonTypeRoundedRect];
dropB.frame = CGRectMake(190, 22, 52, 22);
dropB.backgroundColor = [UIColor clearColor];
dropB.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:11];
[dropB setTitle:@"DRO...
This has me really confused.
I'm working on a custom animation for rotating an image inside a custom UITableViewCell.
This all works fine when I place the code inside the same class as I'm calling it from, but fails if I put the code in it's parent.
So at the moment I have two classes defined as
@interface DummyEvent : Event
@inte...