#contentView

不合法语句 self.contentView.frame.origin.x = x;

下面的写法是错误的:  CGFloat x= self.contentView.frame.origin.x;  x= _lastDownX +translation.x;   self.contentView...

iOS UI 的坑:不要 remove UITableViewCell 的 contentView

看到标题,你可能会想,怎会有人傻到这么做?好吧,一个像我一样没有经验的程序员的确可能。这个问题的背景是,在需要重绘UITableViewCell时,经常遇到需要清空所有subview的情况。而我们有这样一段代码可以利用:UIView+Utils.m-(void)removeAllSubviews{   for...
代码星球 ·2020-06-27