(NSInteger的)的tableView:(UITableView的*)的tableView numberOfRowsInSection:(NSInteger的)部分 { 的NSLog(@ 「BLA%@」,[區段數]);無效的接收器類型爲NSInteger的
return [所有次數]; }
有誰知道如何實現一個簡單的NSLog,因爲我得到一個錯誤。
(NSInteger的)的tableView:(UITableView的*)的tableView numberOfRowsInSection:(NSInteger的)部分 { 的NSLog(@ 「BLA%@」,[區段數]);無效的接收器類型爲NSInteger的
return [所有次數]; }
有誰知道如何實現一個簡單的NSLog,因爲我得到一個錯誤。
NSLog(@"bla %d", section)
NSInteger的基本上只是一個int(但稍微好一些知名的特性)。
這裏是最常用的格式說明:爲整數(INT)
您可以在此處看到其他格式說明符:
https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html
部分是NSInteger類型。 NSInteger類型聲明的變量不具有名稱計數的功能。您可以使用下面的代碼打印部分值。
NSLog(@"bla %d",section)