How can I call selector in static method implementation?
I tried this, but with no success. What am I doing wrong?
WhiteScreenFader.m
+(void) fadeIn:(float)duration inView:(UIView *)view withAction:(SEL)selector
{
.
.
.
[NSObject performSelector:selector]; //??
}
ViewController.m
// I call static method like this
[WhiteScreenFader fadeIn:1.0 inView:self.view withAction:@selector(segue:)];
--- UPDATE Here is complete implementation
+(void) fadeIn:(float)duration inView:(UIView *)view withAction:(SEL)selector
{
// bielu uiview
UIView *whiteView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
[whiteView setAutoresizingMask:UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth];
[whiteView setBackgroundColor:[UIColor whiteColor]];
whiteView.alpha = 0;
[view addSubview:whiteView];
// fade to 0
[UIView animateWithDuration:duration delay:0 options:UIViewAnimationCurveEaseOut animations:^{
whiteView.alpha = 1;
} completion:^(BOOL finished){
[NSObject performSelector:selector];
}];
}
[self performSelector:selector];? – H2CO3 Nov 9 '12 at 20:57segueis not a class method onNSObject. – mipadi Nov 9 '12 at 21:01[UIViewController performSelector:selector]for that. Or, more generally, in+[WhiteScreenFader fadeIn:inView:withAction], you should add atargetparameter and call[target performSelector:selector]. – mipadi Nov 9 '12 at 21:08