【发布时间】:2014-01-17 15:03:35
【问题描述】:
我正在将我的 iOS 6 应用程序转换到 iOS 7 并且遇到了一些问题。
在 iOS 6 中,将调用不再调用的方法。
我的类继承自 UIAlertView。
例如:
- (void)layoutSubviews{
[super layoutSubviews];
rezise the frame for the tableview
}
在 iOS 7 中,不再调用此函数导致我的 tableview 无法调整大小(框架停留在 CGrectZero)。
还有一些不再执行的方法。
我需要使用其他方法吗?
【问题讨论】:
标签: ios objective-c ios6 ios7