iOS 12适配以及问题小记
程序员文章站
2023-12-16 19:42:34
前言
本文主要给大家介绍了关于ios12适配及问题的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧
版本信息
xcode: versio...
前言
本文主要给大家介绍了关于ios12适配及问题的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧
版本信息
xcode: version 10.0 beta (10l176w)
macos: 10.14 beta (18a293u)
ios: 12.0(16a5288q)
问题及解决过程
1,statusbar内部结构改变
现象:crash
crash log:
1,-[_uistatusbaridentifier isequaltostring:]: unrecognized selector sent to instance 0x283452820
2,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; }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。