yunjinghui123

Results 6 comments of yunjinghui123

维护肯定会维护的,看作者博客好像作者生病了,祝好吧

-[NSArray(LYLUnicode) LYL_descriptionWithLocale:indent:] (LYLUnicode.m:0)

-[NSArray(LYLUnicode) LYL_descriptionWithLocale:] (LYLUnicode.m:0) -[NSArray(LYLUnicode) LYL_descriptionWithLocale:indent:] (LYLUnicode.m:0)

为了避免错误对正常的业务逻辑造成影响,我用元组回调了错误和正常数据,做了区分 NSMutableArray *errors = [NSMutableArray array]; NSError *error; co_unpack(&commentMod, &error) = result.firstObject; 多个接口的错误没有逐一展示,而是取最后一条显示,也能解决目前的问题,貌似没有什么好的解决方案了

1、是因为在cellForItemAtIndexPath中重新创建了listHeader,但是在reloaddata中并没有完全将上一个视图移除,在reloaddata中移除就可以 for (UIView *view in self.listHeaderDict.allValues) { [view removeFromSuperview]; } [self.listHeaderDict removeAllObjects]; 2、reloaddata中将self.currentPagerHeaderContainerViewY = 0;置为0所致,移除即可(不知道作者出于什么考虑)