ios开发如何获取当前显示页

 我来答
dt_flys
推荐于2016-05-16 · 超过15用户采纳过TA的回答
知道答主
回答量:37
采纳率:0%
帮助的人:36.7万
展开全部
-(UIViewController *)getCurrentRootViewController {

UIViewController *result;

// Try to find the root view controller programmically

// Find the top window (that is not an alert view or other window)

UIWindow *topWindow = [[UIApplication sharedApplication] keyWindow];

if (topWindow.windowLevel != UIWindowLevelNormal)

{

NSArray *windows = [[UIApplication sharedApplication] windows];

for(topWindow in windows)

{

if (topWindow.windowLevel == UIWindowLevelNormal)

break;

}

}

UIView *rootView = [[topWindow subviews] objectAtIndex:0];

id nextResponder = [rootView nextResponder];

if ([nextResponder isKindOfClass:[UIViewController class]])

result = nextResponder;

else if ([topWindow respondsToSelector:@selector(rootViewController)] && topWindow.rootViewController != nil)

result = topWindow.rootViewController;

else

NSAssert(NO, @"ShareKit: Could not find a root view controller. You can assign one manually by calling [[SHK currentHelper] setRootViewController:YOURROOTVIEWCONTROLLER].");

return result;

}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
HYTC_ZYue
2014-01-08 · TA获得超过519个赞
知道小有建树答主
回答量:516
采纳率:0%
帮助的人:347万
展开全部
利用navigationController,获取栈顶元素。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lc5491137
2014-01-13 · TA获得超过534个赞
知道小有建树答主
回答量:547
采纳率:0%
帮助的人:436万
展开全部
描述不够清晰啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式