iOS开发笔记 5、开发工具Xcode,Inteface Builder

本文介绍了使用Xcode进行iOS应用开发的基础知识,包括不同类型的项目模板选择、应用代理(application delegate)的功能及其需处理的任务,以及如何利用Interface Builder创建界面元素,并通过IBOutlets和IBActions实现交互。

开发工具使用Mac的安装盘或从apple站点下载

Xcode

开发代码使用

扩展名的分类

image

application delegate

需要处理的内容

ƒAt launch time, it must create an application’s windows and display them to the user.

l It must initialize your data.

l It must respond to “quit” requests.

l It must handle low-memory warnings.

建立的各种项目Template

Ø A Window-Based Application, as you’ve seen, is entirely minimalist. You need to create a default UIView for your application before you can do anything. That’s what you’ve used so far.

Ø A View-Based Application has a hair more functionality. It includes a basic view controller that allows you to autorotate content. You’ll use it in chapter 5 (and most of the time thereafter).

Ø A Tab Bar Application creates a tab bar along the bottom that allows you to switch between multiple views. The template does this by creating a tab bar controller and then defining what each of its views looks like.

Ø A Navigation-Based Application sets you up with a navigation controller, a nav bar along the top, and a table view in the middle of the page so you can easily build hierarchical applications.

Ø A Utility Application defines a flip-side controller that has two pages, the first with an info button that allows you to call up the second page.

Ø An OpenGL ES Application is another minimalistic application. Its main difference from the Window-Based Application is that it includes GL frameworks, sends the glView messages to get it started, and otherwise sets certain GL properties.

 
Interface Builder

开发界面使用的工具

IBOUTLETS AND IBACTIONS

In order for Interface Builder–created objects to be useful, Xcode must be able to access their properties and respond to actions sent to them. This is done with IBOutlets and IBActions.

IBOutlet provides a link to an Interface Builder–created object

An IBAction is a message that’s executed when a specific action is applied to an Interface Buildercreated object, such as when a slider moves or a button is clicked.

如:

@property (nonatomic, retain) IBOutletUIWindow *window;

- (IBAction)changeSlider:(id)sender;

image

资源文件:Resources

Creating connection

image

@interface webimageAppDelegate :NSObject<UIApplicationDelegate> {

UIWindow *window;

IBOutletUIWebView *myWebView;

}

@property (nonatomic, retain) IBOutletUIWindow *window;

- (void) refreshQuote;

@end

 

详细的操作和问题可以根据随软件带的帮助查看

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值