iOS8SelfSizingCells icon indicating copy to clipboard operation
iOS8SelfSizingCells copied to clipboard

This is instagram app feed tableView demo use iOS8 Self Sizing Cells.

Results 3 iOS8SelfSizingCells issues
Sort by recently updated
recently updated
newest added

Hi, 我想把AWS dynamoDB里的data 加入到dataSource里, 在block里可以添加,可是离开了block, dataSource就是空的了。我知道是因为block在return [dataSource copy]之后在complete,请问有什么解决方法吗?谢谢 - (NSArray *)newDataSource { // __block NSMutableArray *dataSource = [[NSMutableArray alloc] init]; __block NSMutableArray *dataSource = nil; dataSource = [[NSMutableArray alloc] init];...

去掉计算高度的TableViewDelegate方法。 永远不用实现- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath方法。

如果一个TableView使用了Self-Sizing,并且cell实现了`didSelectRowAtIndexPath`方法,点击cell之后present到一个VC,于是奇怪的事情发生了: 列表发生了跳跃,也就是跳到了其他cell。并且这时如果返回列表视图往上滚动滚动列表(注意是往上滚动)你会发现,所有之前self-sizing的cell位置都乱了,全部都发生了距离上的偏移。 目前我唯一能找到的不完全解决方法是:在`viewWillDisappear`中调用`tableView.reloadData()`,但这只能保证present的时候不出现跳跃,回到tableview往上滚动仍然会出现cell位置跳跃的情况。目前我只能猜测是iOS8的bug了。