摘要:
问题:想让用户在程序中从一个列表中选择数据。通过 Picker view 可以显示一系列的值给用户,并且可以让用户选择其中一个。iPhone 中 Clock 程序里面的时间选择就是一个非常好的例子.h文件:#import @interface ViewController : UIViewContr... 阅读全文
摘要:
1.UISwitch类提供一个开/关的用户控制.- (void)viewDidLoad { [super viewDidLoad]; self.mySwitch = [[UISwitch alloc]initWithFrame:CGRectMake(100, 100, 0, 0)... 阅读全文
摘要:
1.使用示视图的最好方法,当然是使用特定的初始化方法:UIAlertView *alertVeiw = [[UIAlertView alloc]initWithTitle:@"Title" me... 阅读全文
摘要:
所有的 iOS 应用程序基本都使用 Model-View-Controller,或称为 MVC 架构。从架构角 度来看,Model,view 和 controller 是一个 iOS 应用程序的 3 个主要组件:Model 是应用程序的核心。它负责计算和创建一个虚拟的世界,即使没有 view 和 c... 阅读全文
摘要:
1.问题 想监听使用NSNotification广播的系统和自定义通知.2.讨论 开始收听通知时,使用通知中心的 addObserver:selector:name:object:实例方法中对象参数指定源对象(广播)。 对每个参数的简单描述: addObserver :接收通知的对象 (观察... 阅读全文