1. [__NSCFConstantString count]: unrecognized selector sent to instance 0x10ce7f8c0
类型不匹配导致, 存储的是NSString,却用NSMutableArray接收,这个时候使用NSMutableArray属性的时候程序就会奔溃.
排错方法: 检查存储的数据类型是自己需要的类型, [xxx class]打印类型.
2. 首页滑动之后,collectionView不能点击(偶尔可以点击,偶尔不恩能够点击).头部不加东西没有问题,加了图片轮播和另一个就不能滑动✓解决方案:
添加
/**添加触控方法解决首页下拉后cell点击不跳转的问题*/
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event
{
PJLog(@"---你为什么会进来---%@", event);
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event
{
PJLog(@"---你为什么会进来---%@", event);
}