腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(9999+)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
2
回答
向现有
UINavigationController
添加
UINavigationController
我的应用程序从一个带有UIViewController的
UINavigationController
开始(当然),但是当一个按钮被按下时,我希望呈现另一个
UINavigationController
。
浏览 1
修改于2013-07-31
得票数 1
2
回答
UINavigationController
问题
在我的UIViewController类中,我正在处理一个按钮点击,通过这个按钮我可以显示另一个视图(UIWebView),方法是在
UINavigationController
中按下它。问题是,虽然我的视图被推入
UINavigationController
并显示,但我无法看到导航栏中的“后退”按钮。我没有在我的AppDelegate中包含
UINavigationController
类,因为我尝试从我的方法中直接使用
UINavigationController
。下面是我的按钮点击处理代码: NSString *url = [
浏览 1
提问于2011-09-21
得票数 1
1
回答
UINavigationController
动画
*firstController = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
UINavigationController
*firstNavController = [[
UINavigationController
alloc] initWithRootViewController:firstController];secondController = [[SecondViewController alloc] ini
浏览 2
提问于2012-05-03
得票数 0
2
回答
UINavigationController
问题
在我的应用程序中,我使用导航控制器在UIViewController和动作段“显示”之间切换。但是,例如,如果我在UITextView中编写了一些内容,并在该UIViewController中返回,则文本将被删除。我怎样才能保留这些信息?就像在UITabBarController里一样。
浏览 2
提问于2015-04-16
得票数 0
2
回答
推送
UINavigationController
755); s.object= self; [self dismissModalViewControllerAnimated
浏览 3
修改于2018-04-04
得票数 1
3
回答
UINavigationController
addSubview
我有一个
UINavigationController
类,我想添加一个带有addSubview方法的按钮,但它不起作用 - (id)initWithNibName:(NSString *)nibNameOrNil
浏览 0
提问于2013-04-25
得票数 1
回答已采纳
1
回答
uinavigationcontroller
问题
我有以下代码
UINavigationController
*sample = [[
UINavigationController
alloc] initWithRootViewController:newcontact
浏览 0
提问于2011-04-22
得票数 0
回答已采纳
3
回答
UINavigationController
中的UITabBarController
UINavigationController
中的
所以它是这样的: Window ->
UINavigationController
-> UITabBarController ->
UINavigationController
->子视图控制器 问题是我最终得到了两个导航栏
浏览 1
提问于2009-09-01
得票数 1
回答已采纳
2
回答
UINavigationController
(drawRect:)
我用一个TabBarController创建了一个应用程序,4个TabBarItems,每个TabBarItem都有自己的NavigationController文件(所有在IB中创建的文件)。@implementation UINavigationBar (customImage) [image drawInRect:CGRe
浏览 0
提问于2010-04-01
得票数 1
回答已采纳
3
回答
UINavigationController
建议
我读到当你想从n个屏幕跳到第一个屏幕时,
UINavigationController
是最好的选择。
浏览 0
修改于2012-05-21
得票数 1
回答已采纳
1
回答
UINavigationController
问题
在视图控制器中,我添加了一个
UINavigationController
,它的顶部大约有20-30个像素。它不适合navigationCOntroller。出于某种原因,它在下面添加了20-30像素的子视图navController.navigationBar.tintColor
浏览 2
提问于2010-10-08
得票数 0
回答已采纳
2
回答
UINavigationController
保留
我用两个ViewControllers编写了简单的基于
UINavigationController
的应用程序;-(IBAction)loadSecondView {
浏览 0
修改于2012-03-07
得票数 0
回答已采纳
4
回答
使用
UINavigationController
下面是我的代码: if (!self.mapViewController) self.mapViewController = [[MapViewController alloc]initWithNibName:@"MapViewController" bundle:nil]; [self.navigationController pushViewController:mapViewController animated:YES];发生的情况是:当我第一次按下播放按钮时,新的视图没
浏览 0
修改于2012-04-30
得票数 0
回答已采纳
1
回答
UITableViewController
UINavigationController
控制台说gamePickerViewController是一个
UINavigationController
。有什么想法吗?
浏览 2
修改于2015-11-01
得票数 0
回答已采纳
2
回答
UISegmentedControl in
UINavigationController
我想取得的成果如下: 这些UITableViewControllers应该由一个
UINavigationController
来管理,并且用户应该能够通过放置在
UINavigationController
浏览 6
提问于2014-01-10
得票数 0
回答已采纳
1
回答
UINavigationController
样式
我是在代码
UINavigationController
中创建的,但我想将样式更改为黑色半透明
UINavigationController
*navcon = [[
UINavigationController
alloc] init]; navcon.navigationController.navigationBar.barStyle
浏览 0
修改于2013-03-12
得票数 5
回答已采纳
2
回答
UITabBarController
UINavigationController
我将tabbarcontroller和navigationcontroller结合在一起。我通过使用以下命令来设置navigationitem title:对于第一页第二页,标题显示。我怎么才能修复它?
浏览 1
修改于2016-05-05
得票数 3
2
回答
UINavigationController
时髦
我目前正在使用这个指南,这样我就可以用另一个视图控制器替换根控制器了。考虑以下场景,查看A(根) ->视图B然而,这个新场景破坏了我的解析算法,当我们第一次进入视图时,布尔值(firstLine)应该设置为YES,这是一个奇怪的交替。我开始相信第一个视图B仍然在后台运行;因此,我尝试了po
浏览 0
修改于2013-02-22
得票数 0
2
回答
UINavigationController
模板
当我上一次使用Xcode时,在我更新它之前,我记得有超过3个选项,其中包括我正在寻找的:
UINavigationController
。
浏览 0
修改于2012-04-14
得票数 0
回答已采纳
1
回答
UINavigationController
错误
只有当源控制器由
UINavigationController
的实例管理时,才能使用Push segues。
浏览 2
修改于2013-12-08
得票数 2
回答已采纳
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
第 7 页
第 8 页
第 9 页
第 10 页
第 11 页
点击加载更多
领券