我有这个代码:
[self performSelector:@selector(animationWithType:) withObject:PasscodeAnimationTypeConfirm afterDelay:0.2];
对这个方法:
-(void)animationWithType:(PasscodeAnimationType)type;
把它放在它的位置:
[self performSelector:@selector(animationWithType:) withObject:[NSNumber numberWithInt:PasscodeAnimationTypeConfirm] afterDelay:0.2];
返回“1”的 NSLog,我的方法没有将其归类为与 PasscodeAnimationTypeConfirm 相同的值。我怎样才能解决这个问题?