iOS 7.1 removeFromSuperview crash

后端 未结 9 978
孤街浪徒
孤街浪徒 2021-02-05 13:40

My app didn\'t have any crash until iOS 7.1 came out. Now on any removeFromSuperview method, crash. For example: I got view controllers, and when I

9条回答
  •  青春惊慌失措
    2021-02-05 14:07

    Instead of:

    for (UIView *subView in subviews)
         [subView removeFromSuperview];
    

    Try:

    [subviews makeObjectsPerformSelector:@selector(@"removeFromSuperview");
    

提交回复
热议问题