20年目睹之怪bug

release 情况下资源加载不出来的问题

上个版本上线后突然发现了一个问题,GIF加载动画不出来了?!
切换到release环境下,100%的复现的bug
定位到问题在

YYImage *image = [YYImage imageNamed:@"qfloading.gif"];

path = [[NSBundle mainBundle] pathForResource:scaledName ofType:e];

这里path返回nil.

那解决办法就找到了:
Build Phases -> Copy Bundle Resources 将gif加进去后,问题就解决了,release情况下gif可以正常显示了

疑问:以前gif资源是放在Images.xcassets里的,而且线上也是没有问题的,只有这个版本出现了问题,而且debug环境下没有问题

上传包到商店卡在authenticating with the app store

code11 在第一次上传ipa的时候,需要更新上传依赖的文件包. 依赖的上传文件包没有更新下来导致的上传失败.切换网络环境(我用手机开的热点好了),或者也可以

//1.删掉 
~/Library/Caches/com.apple.amp.itmstransporter/
//2.重新执行
/Applications/Transporter.app/Contents/itms/bin/iTMSTransporter

看这里

系统图片出现灰色边框的问题

iOS13发布后,UIImage有一个新增方法imageWithTintColor:,可以改变图片的颜色

_imgView.image = [image imageWithTintColor:[UIColor redColor]];

有一些三方库的类扩展比如 UIImage+Additions可能覆盖了这个方法,导致出现这种系统icon出现灰色边框的现象,删掉这些方法就可以了


灰色边框

UDID OpenUDID ASID 和UUID

UDID 设备唯一标识符,但是iOS 5以后禁用了
OpenUDID

// 广告标识符IDFA
[[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString]
//应用加设备绑定产生的标识符
[[[UIDevice currentDevice] identifierForVendor] UUIDString]
//UUID
[[NSUUID UUID] UUIDString]

UITextFied 里输入

123 456 789
然后选中456,删除
会将123 和456中间的空格也删掉。。
我只是要删掉456啊!!谁叫你给我删空格的!!

2. ios 14.0 UIMenuController 不出现

amazing ?
其他项目里都可以,写得demo也可以。就是目前项目中未出来,原因未知,转交其他同学处理~

线上是正常的,tf包不正常。离了个大谱!!

iOS 14.7.1reloadInputViews 会触发keyboardWillHide的通知,造成input跳动~

- (void)viewDidLoad {
    [super viewDidLoad];
    _tf = [[UITextView alloc] initWithFrame:CGRectMake(10, 100, 200, 50)];
    _tf.backgroundColor = [UIColor redColor];
    [self.view addSubview:_tf];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardHidden:) name:UIKeyboardWillHideNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardShow:) name:UIKeyboardWillShowNotification object:nil];
}

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    UIView *vie = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 100)];
    vie.backgroundColor = [UIColor redColor];
    self.tf.inputAccessoryView = self.tf.inputAccessoryView != nil ? nil : vie;
    [self.tf reloadInputViews];
}

- (void)keyboardHidden:(NSNotification *)noti {
    NSLog(@"keyboardHidden");
}
- (void)keyboardShow:(NSNotification *)noti {
    NSLog(@"keyboardShow");
}

14.7.1 log:

inputAccessoryView 为nil时
keyboardShow

nputAccessoryView 为存在View时:
keyboardHidden
keyboardShow

13.6 log:

inputAccessoryView 为nil时
keyboardShow

nputAccessoryView 为存在View时:
keyboardShow

可以看到,当nputAccessoryView 存在时,14.7会多执行一次keyboardHidden通知

目前解决方案:
刷新键盘时,添加控制:

    self.reloadInputViewLock = YES;
    [self.inputBoxView.textContainerView.textView.internalTextView reloadInputViews];
    self.reloadInputViewLock = NO;

- (void)keyboardHidden:(NSNotification *)noti
{
    if (self.reloadInputViewLock) {
        return;
    }
。。。
}

当打包机的内存不够时候,会出现部分图片资源打不进去的问题。

打出来的包在部分机型上会出问题

** Assertion failure in -[_UIImageCGImageContent initWithCGImage:scale:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKitCore_Sim/UIKit-3901.4.2/_UIImageContent.m:336
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Need an imageRef'

在组件打包为二进制后,部分宏定义会失效,比如断言,或者当前开发环境等。 可能会遗漏一部分错误信息,但是优点也非常明显,加快了编译速度.

当运行内存不足时,会爆指针错误,目前项目中有非常多的类型情况,特别是YYText

Attempted to dereference garbage pointer 0xc.Originated at or in a subcall of bool

invalid update: invalid number of rows in section 0. the number of rows contained in an existing section after the update (20) must be equal to the number of rows contained in that section before the update (20), plus or minus the number of rows inserted or deleted from that section (0 inserted, 1 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'

tableView 和 collectionView的cell操作引起的问题,原因往往是数据源和cell不一致导致。
deleteRowsAtIndexPaths
insertSections
类似操作一定要加好判断,不然很容易引起类似问题

你可能感兴趣的:(20年目睹之怪bug)