我目前正在开发一个应用程序,该应用程序具有一些带有按钮的 ViewController,该按钮可以推送到带有搜索栏和搜索显示控制器的 UITableViewController。我在单元格中有一些数据并且会被填充。我添加了以下代码来隐藏搜索栏,并在您看到它时使其变得清晰:
[[self.searchBar.subviews objectAtIndex:0] removeFromSuperView];
[self.searchBar setBackgroundColor:[UIColor clearColor]];
CGRect newBounds = [[self tableView]bounds];
newBounds.origin.y = newBounds.origin.y + searchBar.bounds.size.height;
[[self tableView] setBounds:newBounds];
现在这在我使用 iOS 模拟器时有效,但是当我在我的设备上运行它并开始向上或向下滚动时,它会崩溃并给我以下错误:
EXC_BREAKPOINT (code = EXC_ARM_BREAKPOINT, subcode = 0xdefe)
然后我启用 Zombie Objects 来进一步调试并得到这个:
-[UIView frame]: message sent to deallocated instance 0x156b1430
当我起飞时:
[[self.searchBar.subviews objectAtIndex:0] removeFromSuperView];
[self.searchBar setBackgroundColor:[UIColor clearColor]];
并再次在我的设备上运行我的应用程序,它不会崩溃并且工作正常。
任何人都知道发生了什么以及这是如何发生的?提前致谢!