NSIntegerを返している間に警告があります。私はUITableViewのinbuiltメソッドnumberOfRowsInSectionを使用しています。私はそれを返すとき、結果の型 'NSInteger *'(別名 'int *')を持つ関数から 'NSInteger'(別名 'int')を返すポインタの会話と互換性のない整数です)を警告します。NSIntegerを返している間に警告を受けました
私はこのコードを使用しています。
-(NSInteger *)tableView: (UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSInteger row=10;
return row;
}
@Justinが... ..多くの時間を保存したので、私は書くべき - (NSInteger *)のtableView:(のUITableView *)のtableView numberOfRowsInSection:(NSInteger *)セクション {} ?? – Akash
@Akash no - 私は更新し、私の答えを明らかにしました。私の答えに見られる署名を使用してください。 – justin
@ジャスティン....あなたにも高尚...ありがとうございます。 – Akash