zoukankan      html  css  js  c++  java
  • ios12更新开发者需要做的

    1.StatusBar内部结构改变

    现象:crash

    crash log:

    -[_UIStatusBarIdentifier isEqualToString:]: unrecognized selector sent to instance 0x283452820

    * Terminating app due to uncaught exception ‘NSInvalidArgumentException’, reason: ‘-[_UIStatusBarIdentifier isEqualToString:]: unrecognized selector sent to instance 0x283452820

    问题代码和解决方法

    + (NSString *)getIphoneXNetWorkStates {

    UIApplication *app = [UIApplication sharedApplication];

    id statusBar = [[app valueForKeyPath:@"statusBar"] valueForKeyPath:@"statusBar"];

    id one = [statusBar valueForKeyPath:@"regions"];

    id two = [one valueForKeyPath:@"trailing"];

    NSArray *three = [two valueForKeyPath:@"displayItems"];

    NSString *state = @"无网络";

    for (UIView *view in three)

    { //alert: iOS12.0 情况下identifier的变成了类"_UIStatusBarIdentifier"而不是NSString,所以会在调用“isEqualToString”方法时发生crash

    //修改前 // NSString *identifier = [view valueForKeyPath:@"identifier"];

    //修改后

    NSString *identifier = [[view valueForKeyPath:@"identifier"] description];

    if ([identifier isEqualToString:@"_UIStatusBarWifiItem.signalStrengthDisplayIdentifier"]) {

    id item = [view valueForKeyPath:@"_item"]; //alert: 这个问题和上边一样itemId是_UIStatusBarIdentifier 类型,不是string

    NSString *itemId = [[item valueForKeyPath:@"identifier"] description];

    if ([itemId isEqualToString:@"_UIStatusBarWifiItem"]) {

    state = @"WIFI"; } state = @"不确定"; } else if ([identifier isEqualToString:@"_UIStatusBarCellularItem.typeDisplayIdentifier"]) {

    UIView *statusBarStringView = [view valueForKeyPath:@"_view"]; // 4G/3G/E state = [statusBarStringView valueForKeyPath:@"text"];

    } } return state;

    }

    2.[UIImage imageNamed:]不能正常加载Assets中的图片

    解决: 
    将图片放到bundle中 
    使用一下方式加载即可

    NSString *path = [[NSBundle mainBundle] pathForResource:@"bg_login" ofType:@"png"]; _backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:path]];

    这个不能正常加载的情况只出现在个别的地方,目前找到的共性是加载的图片偏大.

    其他bug 参考

    https://juejin.im/post/5b1634f0f265da6e61788998

  • 相关阅读:
    移动端拖拽
    原生js增加,移除类名
    js自执行函数
    页面加载初始化方法
    writing-mode,文字竖直书写,字符之间距离,单词之间距离
    滚动鼠标达到一点范围时的跑秒效果,从0开始一直加在规定时间内加到最大值
    haley解决中文字段名称字数不同时两端对齐的问题
    常用的一些css实现的小效果,比如三角形,小三角,阴影等
    html几个比较常用的颜色名称
    Spring--通过注解来配置bean
  • 原文地址:https://www.cnblogs.com/pp-pping/p/9667352.html
Copyright © 2011-2022 走看看