CYLTabBarController
CYLTabBarController copied to clipboard
QMUI最新版 和 CYL最新版冲突
- (UIControl *)cyl_visibleControlWithIndex:(NSUInteger)index {
UIControl *selectedControl;
@try {
NSArray *subControls = self.cyl_visibleControls;
selectedControl = subControls[index];
} @catch (NSException *exception) {
NSLog(@"🔴类名与方法名:%@(在第%@行),描述:%@", @(__PRETTY_FUNCTION__), @(__LINE__), exception.reason);
}
return selectedControl;
}
越界