-[__NSCFNumber _accessibilityViewIsVisible]: unrecognized selector sent to instance

先给懒癌晚期及其阅读恐惧症童鞋先贴下解决方法

继承于 UITableView 的class 不能定义 以下属性
//@property (nonatomic, assign) NSInteger index;

只能用
@property (nonatomic, copy) NSString *index;
或者
@property (nonatomic, assign) NSInteger currentIndex;

今天我们新版的App出现一个很诡异的bug
首页加载的时候会出现这个crash
堆栈很奇怪 定位到了main函数
而且全局断点无效

测试和开发一开始都没有找到重现路径
国内外的资料找了一天都没什么头绪
就是这时同事看到accessibility 这个单词联想到是否跟iOS系统自带的辅助功能有关
于是抖机灵的打开了 设置-通用-辅助功能-(旁白或者语音-双指下滑朗读选项)
然后在我们app首页启动辅助功能 就重现了这个crash路径和信息

就在我们以为找到了路径能解bug的时候又傻逼了
一个个界面屏蔽
排除了一个下午没排除到具体的问题
最后才定位在
一个自定义的UITableView 用

[self.view addSubView: [tableViewClass alloc] init]];

不进行任何初始化 然后调用辅助功能就会crash

于是乎用runtime把UITableView类所有成员变量打印出来
Runtime基本介绍

 unsigned int iVarCount;
    
    Ivar *iVarList = class_copyIvarList([UITableView class], &iVarCount);
    
    for (int i = 0; i < iVarCount; i++) {
        
        Ivar aVar = iVarList[i];
        
        NSLog(@"%s",ivar_getName(aVar));
    }
/*

.270772  _rowData
.270895  _rowHeight
.271007  _sectionHeaderHeight
.271166  _sectionFooterHeight
.271442  _estimatedRowHeight
.271567  _estimatedSectionHeaderHeight
.271703  _estimatedSectionFooterHeight
.271825  _visibleBounds
.271975  _subviewManager
.272076  _visibleRows
.272168  _visibleCells
.272341  _templateLayoutCells
.272469  _indexPathBeingCreated
.272635  _firstResponderIndexPath
.272918  _firstResponderView
.273159  _firstResponderViewType
.273518  _reusableTableCells
.303977  _nibMap
.304102  _nibExternalObjectsTables
.304203  _headerFooterNibMap
.304289  _headerFooterNibExternalObjectsTables
.304437  _topSeparator
.304540  _extraSeparators
.304635  _visibleHeaderViews
.304763  _visibleFooterViews
.304853  _reusableHeaderFooterViews
.304997  _highlightedIndexPaths
.305251  _selectedIndexPaths
.305517  _swipedIndexPath
.305757  _highlightedSpringLoadedIndexPath
.305988  _pendingSelectionIndexPath
.306243  _pendingDeselectionIndexPaths
.306465  _newContentView
.306702  _deleteAnimationSupport
.306981  _reorderingSupport
.307231  _backgroundView
.307460  _clearBlendingView
.307705  _wrapperView



.308015  _index



.308280  _tableHeaderBackgroundView
.308572  _tableHeaderView
.308833  _tableFooterView
.309010  _countLabel
.309535  _sectionIndexTitlesForTableView
.309802  _indexOverlayIndicatorView
.310196  _indexOverlayTimer
.310547  _indexOverlayIndicatorEventIgnoreTimer
.310699  _currentIndexTitleIndex
.310905  _indexOverlaySelectionView
.311554  _tableReloadingSuspendedCount
.311869  _sectionIndexMinimumDisplayRowCount
.312745  _updateAnimationCount
.313065  _lastFloatingSection
.314186  _insertItems
.314538  _deleteItems
.317482  _reloadItems
.318338  _moveItems
.319139  _separatorColor
.319308  _darkenedSeparatorColor
.319508  _separatorTopShadowColor
.319770  _separatorBottomShadowColor
.320000  _separatorEffect
.320275  _accessoryBaseColor
.320615  _checkmarkColor
.320829  _sectionBorderColor
.321132  _indexColor
.321425  _indexBackgroundColor
.321661  _indexTrackingBackgroundColor
.321918  _defaultSectionIndexTitles
.322157  _swipeActionController
.322353  _swipeDeletionShadowUpdateIdentifiers
.322632  _swipeGestureRecognizer
.322842  _swipeToDeleteGobblerGestureRecognizer
.323056  _swipeToDeleteCell
.323311  _updateCount
.323524  _shadowUpdateCount
.323808  _revertingShadowUpdateCount
.324104  _displayingCellContentStringIndexPath
.324302  _longPressGestureRecognizer
.324558  _upArrowLongPressGestureRecognizer
.324774  _downArrowLongPressGestureRecognizer
.325045  _upArrowTapGestureRecognizer
.325245  _downArrowTapGestureRecognizer
.325458  _longPressAutoscrollTimer
.325727  _longPressAutoscrollDirection
.326061  _sectionContentInset
.326450  _sectionBorderWidth
.326691  _sectionCornerRadius
.326956  _currentTouch
.327230  _cellClassDict
.327446  _headerFooterClassDict
.327733  _topPadding
.328026  _bottomPadding
.328300  _separatorInset
.328505  _updateCompletionHandler
.328712  _deferredEditingHandler
.328974  _hiddenSeparatorIndexPaths
.329129  _tentativeCells
.329887  _tentativeHeaderViews
.330336  _tentativeFooterViews
.330775  _clientGesturesRequiringTableGesturesToFail
.331072  _currentUpdate
.331813  _shadowUpdatesController
.332116  _preReloadVisibleRowRange
.332506  _preReloadFirstCellOffset
.332798  _lastWindow
.333015  _focusedViewType
.333177  _contentFocusContainerGuide
.333452  _constants
.333647  _targetIndexPathForScrolling
.333843  _targetOffsetToIndexPathForScrolling
.334062  _indexRetargetFeedbackGenerator
.334306  _sectionChangeFeedbackGenerator
.334557  _reorderFeedbackGenerator
.334768  _performUsingPresentationValuesCount
.334927  _prefetchDataSource
.335167  _prefetchContext
.335368  _coalescedContentSizeDelta
.335531  _tableFlags
.335816  _dragDelegate
.336066  _dropDelegate
.336295  _focusedCellIndexPath
.336487  _focusedCell
.336725  _indexPathToFocus
.336980  _dragController
.337142  _dropController
.337628  _placeholderContexts
.337862  _dragSourceDelegate
.338106  _dragDestinationDelegate
.338290  _cachedSectionIndexBarInsets
*/

发现系统UITableView其中有一个私有属性Index是String类型的 所以由于各种原因(苹果的bug) 会导致app崩溃 而且没有任何信息

找了很多资料找不到解决办法
因此和大家分享一下我们的解决方法
如果帮助到大家可以点个赞
鼓励up主继续创作
么么哒 (*  ̄3)(ε ̄ *)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • 用到的组件 1、通过CocoaPods安装 2、第三方类库安装 3、第三方服务 友盟社会化分享组件 友盟用户反馈 ...
    SunnyLeong阅读 14,598评论 1 180
  • 从小到大,一直拥有别人眼中羡慕的身材,高挑又苗条,而且怎么吃也不胖。对于那些喝水都要胖的朋友来说,一聊起来牙根都恨...
    北木山阅读 218评论 1 3
  • 良性甲状腺结节如何吃药,是否需要手术? 甲状腺结节分两种一种是实性的,一种是囊性的,实性相当于实心,囊性里头装的是...
    医学小咖成长之路阅读 674评论 0 0