问题描述
- iOS开发 页面跳转问题 主要是无法声明需要返回的主页
-
-(void)btnClick:(UIButton *)btn
{
rootView *rootView = [[[rootView alloc] init] autorelease];
GroupHeadQuarters_2 *GHQ2 = [[GroupHeadQuarters_2 alloc] init];
}
出错在rootView这一行,报错信息“Instance methid '-alloc' not found;Varuable 'rootView' is uninitialized when used within its own initialization”,已经引入rootView.h头文件,关闭了程序ARC模式。问下问题出在rootView还是在调用rootView的页面?
解决方案
http://www.2cto.com/kf/201408/326136.html
时间: 2024-09-12 07:38:25