我有一個簡單的UITableView使用自定義的UITableViewCells。 在UITableView的屬性上設置的選項只是將樣式設置爲分組。 當我試圖通過不同的項目向下滾動滾動是非常跳動。 我已經研究了這個相當有點看在Tricks for improving iPhone UITableView scrolling performance?和在這個網站上的一些其他問題。儘管如此,我還沒有真正找到解決方案。UITableView靜態滾動
編輯**** 我使用WSDL webservice將數據加載到UITableViewCells中。 單元格只有一個UITextView和三個按鈕。
編輯****
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"NavigatorCell";
NewCell *cell = (NewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"NewCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.postId = [[items objectAtIndex:indexPath.row] objectForKey:@"PostID"];
cell.post.text = [[items objectAtIndex:indexPath.row] objectForKey:@"Post"];
return cell;
}
您的tableview設置爲重用單元格嗎? – JeffN 2013-04-22 21:08:40
你加載到單元格中的是什麼? – holex 2013-04-22 21:10:26
@ DCS123我該如何設置? – 2013-04-22 21:14:24