Closed besi closed 11 years ago
Currently I can work around the issue by using nonatomic setters or by calling the method myself.
Which OS version are you running on?
It's 6.0 but supporting iOS 5.0
Am 28/02/2013 um 13:08 schrieb Kent Nguyen notifications@github.com:
Which OS version are you running on?
— Reply to this email directly or view it on GitHub.
I cannot reproduce the bug. Adding these to KNThirdViewController.m
and set a break point, you will see it breaks as expected for both iOS 5 & 6
-(void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
NSLog(@"DO Something");
}
I show a semi-modal
UIViewController
like so:Now In my
datePickerVC
I assume thatviewWillAppear:
is called, before my ViewController is presented. This does not seem to be done by KNSemiModalViewController.