first in .h define int row;
and now in viewDidLoad: row=25;
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if([your array count]>row)
return row+1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row<row)
{
[email protected]"Your Text";
}
else{
[email protected]"Load More";
}
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
if (indexPath.row==row)
{
row=row+25;
[tableView reloadData];
}
` はあなたがデータベースからレコードをフェッチするかのUITableViewにそれらをロードするためのコードが必要
...これはあなたを助けることを願っていますか? –
最初の25個のレコードを取得するにはクエリを使用する必要があります。次の25個のレコードでLoad Clickイベントの別のクエリを起動し、次にTableViewのReloadingを使用します。ロードボタンをクリックするたびにこれを実行してください.... – DShah
サンプルコードのリンクを私に送信できますか? – vinay