IOE开发bug记录

1. 监听UITextfield改变,方法要写在控制器.

[_contentView.passwordTF addTarget:self action:@selector(textDidChange:) forControlEvents:UIControlEventEditingChanged];

2.密码框输入密码,

[AutoFill] Cannot show Automatic Strong Passwords for app bundleID: -App-ID-Prefix-QP8UZV798L.com.loemarket.ios.ioe-ios due to error: iCloud Keychain is disabled

Snip20200703_2

3.Terminating app due to uncaught exception ‘NSInvalidArgumentException’, reason: ‘\* -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[0]’**

4.Pushing a navigation controller is not supported

5.‘-[WSStoreAllData copyWithZone:]: unrecognized selector sent to instance 0x28087dea0’

7._storesArray莫名其妙清空了,需要重建一个数组,之前的控制器销毁了.

1
_storesArray = [NSArray arrayWithArray:note.userInfo[@"selectedStores"]];

8.couldn’t find a common superview,frame 和Masonry冲突

9.-[WSGoodsIndexRequest setSids:]**unrecognized selector sent to instance**

10.添加action在建立button之前,导致button点击没有反应.

11.collectionView 不显示, datasource 没设置

12.collectionView重复添加.

13.‘unable to dequeue a cell with identifier reuseIdentifier - must register a nib or a class for the identifier or connect a prototype cell in a storyboard’

14.单位点击取消后,再次点击选不中,必须点下其他单元格才行.

15.图片大小导致masonry布局不合适

16.TVC里面的view和label滚动才显示,选中显示,滚出屏幕消失

1.被上面的cell里面的view高度大于cell高度挡住了

17.label和textfield masonry 位置乱跑