我在UITableView
中有縮進問題。 See image to make it clear。ios,UITableView,縮進滾動後意外更改了
有隻是UILabel
細胞。 啓動應用程序後,所有點都具有相同的縮進(例如圖片上的點Schedule &收藏夾)。但是當我向上滾動&然後向下滾動它時,標籤的縮進會發生變化。它出現在iOS6
以及iOS7
。
有沒有人有想法如何解決它?
EDIT0:它似乎不僅僅是第一次渲染(在屏幕出現之前)效果很好。所有其他調用「cellForRowAtIndexPath」返回不正確的單元格視圖。 可能是連接w /約束......但我不知道。
無論如何,NSS的工作方式應該是這樣。謝謝大家的幫助。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
//#warning Potentially incomplete method implementation.
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
//#warning Incomplete method implementation.
// Return the number of rows in the section.
return [activeList count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"mainPointCell";
OMSMainActiveCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
[cell.textLabel setText:[activeList objectAtIndex:indexPath.row]];
return cell;
}
在此處添加您的代碼 – Sport
@Sport aaa ...如果你真的需要它:) – user3124812
你使用故事板嗎?如果是這樣,那麼你使用了多少個原型單元? – GoGreen