年が二性であるかどうかを調べるコードを書き込もうとしていますが、最初の行に「セレクター'datetoday'のKnowClassメソッドがありません」というエラーが表示されます...なぜ私が持っているのかわかりませんこのエラーは、コードをボタンに入れようとしたときに問題なく機能しました...しかし、コードを「viewDidLoad」に配置する必要がありますが、そのエラーが発生します...
私のコード:
- (void)viewDidLoad {
[super viewDidLoad];
NSDate *datetoday = [NSDate datetoday];
NSDateFormatter *formatyears = [[NSDateFormatter alloc] init];
[formatyears setDateFormat:@"YYYY"];
NSString *yearStr = [formatyears stringFromDate:datetoday];
int yearint = [yearStr intValue];
int resto;
resto = yearint % 4;
if (resto == 0) {
teste.text = @"bissexto";
} else {
teste.text = @"not bissexto";
}
}