xcode 4.3 怎么新建class 和一些uiviewcontroller 的使用

 我来答
就烦条0o
2016-04-16 · 知道合伙人软件行家
就烦条0o
知道合伙人软件行家
采纳数:33315 获赞数:46489
从事多年系统运维,喜欢编写各种小程序和脚本。

向TA提问 私信TA
展开全部
在 Subclass of 可以填写要继承的对象

with xib for user interface 是否建立绑定的xib 文件 一般绑定 storyboard 里的view 是不用打勾的 绑定Storyboard 上 ViewController 上章有说

自定义控件 一般可以选上 方便布局

下面是ios 里面最常用的 Navigation Controller 的使用哦!

继续截图

直接拖个Navigation Controller 进来 选中 navigation controller 把 is initial view controller 打勾 这样这个view controller 成为我们的第一个界面

接着 可以删掉 root view controller 换成我们自己的view controller 从 navigation
controller 拉线到我们的view controller 上 选relationship -xxxxxx 这样这个view
controller

就成功navigation controller 的根界面了

再拉两个页面出来演示 上章有说 可以从 button 直接拉线 也可 从 view controller 拉线 从view controller 拉线的 记得把 identifier 写上

style 选 push

建3个 viewcontrooler 并绑定

标题可以点击 Navigation item 设置 title 等一些属性 也可以在代码中设置

- (void)viewDidLoad

{

[superviewDidLoad];

self.title = @"地球";

self.navigationItem.prompt =@"我是谁!";

}

其他两个viewController 标题

- (void)viewDidLoad

{

[superviewDidLoad];

// Do any additional setup after loading the view.

self.title = @"月亮";

}

- (void)viewDidLoad

{

[superviewDidLoad];

// Do any additional setup after loading the view.

self.title = @"火星";

}

在 再 button 事件里面写

- (IBAction)bt_pressed:(UIButton *)sender {

[selfperformSegueWithIdentifier:@"GotoTwo"sender:self];

}
运行下看看效果咯!

最后是一些跳转和返回的方法

//根据 segue Identifier 跳转界面

[self performSegueWithIdentifier:@"GotoTwo" sender:self];

//以modal 方式跳转

[self presentModalViewController:nil animated:YES];

//压进一个viewcontroller

[self.navigationController pushViewController:nil animated:YES];

//弹出一个viewcontroller 相当与返回上一个界面

[self.navigationController popViewControllerAnimated:YES];

// 以 modal跳转 的返回方法

[self dismissModalViewControllerAnimated:YES];
浙江启扬智能科技有限公司
2023-06-12 广告
Linux 嵌入式系统中,USB 启动模式能够烧写 ARM 的 uboot 的原因主要有以下几个方面:1. USB 启动模式相对于传统的 BIOS 启动模式来说,具有更高的兼容性和灵活性,可以支持更多的硬件设备和操作系统。2. USB 启动... 点击进入详情页
本回答由浙江启扬智能科技有限公司提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式