将插座变量(IBOutlet)关联到*.xib文件中对象以BNRDetailViewController.m和BNRDetailViewController.xib为例(《iOS编程》第10章例子)1、打开BNRDetailViewController.xib,添加一个UITextField对象;2...
分类:
其他好文 时间:
2015-02-26 22:47:25
阅读次数:
161
今天我们来实现新增数据的功能。在新增餐馆的控制器中初始化一个类:
var restaurant = Restaurant()
接着创建关联,按住control键选择done按钮拖拽到控制器代码中:
会自动生成如下代码:
@IBOutlet weak var doneButton: UIBarButtonItem!
同理把文本框也拖过去。回到控制器中有一个方法已经为我们准备好了,...
分类:
编程语言 时间:
2015-02-26 13:28:29
阅读次数:
201
我们都知道在IOS界面编程的时候有IBOutlet和IBAction,前者是引用后者是操作,IBAction有一个参数sender,用来指向操作对象,之前我发布的天气预报的小程序那一话可以看到,如果我们需要一个按钮的点击事件的话那就使用IBAction,如果是一个Label要显示东西的话那就用IBOutlet。
现在来讲一下IBAction中的一些事件类型:
1.Touch...
分类:
编程语言 时间:
2015-02-24 18:45:27
阅读次数:
185
DAY03复习:1 IB:界面设置(xib文件)2 IBOutLet(属性 输出口) IBAction(事件返回值)3 UIStepper 步径控件 常用属性 Value 事件ValueChange UISilder快速滑动产生一个可变化的值 常用属性 Value 常用事件:VlaueChang U...
分类:
其他好文 时间:
2015-02-07 14:21:16
阅读次数:
228
一、NSURLConnection 1.简单登陆(get请求) #import "MBProgressHUD+MJ.h"@interface HMViewController () @property (weak, nonatomic) IBOutlet UITextField *usernam.....
分类:
移动开发 时间:
2015-02-06 18:39:45
阅读次数:
177
#import "ViewController.h"
#define ImageViewCount 5
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIScrollView *imageScrollView;
@property (weak, nonatomic) IBOutlet UIPageContro...
分类:
移动开发 时间:
2015-02-03 17:12:25
阅读次数:
210
下面是具体代码// ViewController.m#import "ViewController.h"@interface ViewController ()@property (nonatomic,weak) IBOutlet UITextField *text1;@property (nona...
分类:
移动开发 时间:
2015-02-03 01:49:17
阅读次数:
170
下面是具体代码:// ViewController.h#import @interface ViewController : UIViewController/*1.开发步骤 1.搭建界面 2.连线 3.编写代码2.IBAction & IBOutlet IBAction 用来和操作建立关系...
分类:
移动开发 时间:
2015-02-02 22:41:51
阅读次数:
154
#import "SKUIViewController.h"@interface SKUIViewController() @property(nonatomic,weak)IBOutlet UIScrollView *scrollview;@property(nonatomic,weak)IBOu...
分类:
其他好文 时间:
2015-02-01 13:26:06
阅读次数:
145
案例:通过触摸事件拖动imageView和view1和view2注意:1.imgeview默认不能响应触摸事件,2.视图有三个子视图,如何区分多个视图用storyBoard托人2个view和一个imageView,IBOutlet连线案例图片:【一会上传】//让imageView接受用户触摸1 [s...
分类:
其他好文 时间:
2015-01-20 11:46:07
阅读次数:
130