码迷,mamicode.com
首页 >  
搜索关键字:iboutlet    ( 317个结果
GCD工作单元
#import <UIKit/UIKit.h>@interface ViewController : UIViewController@property (weak,nonatomic)IBOutlet UIButton *startBtn;@property (weak,nonatomic)IBO ...
分类:其他好文   时间:2016-05-18 17:35:36    阅读次数:135
ios基础知识--01
第一天: 1. 如果一个方法,只需要点击按钮触发,不需要其他地方调用,那么不需要在.h中声明只需要在.m中实现即可 2. 对于只需要在ViewController中使用的控件(属性),我们一般声明在类扩展中,UI控件,通通使用weakUI控件需要连线,也需要添加标示IBOutlet 3. 将文本框的文字转化为数字:[self.field.text intValue]; 4. 收起键盘:取消...
分类:移动开发   时间:2016-05-13 00:05:34    阅读次数:192
自定义非等高cell02-xib
在model中加入一个属性,cell的高度。 LMTestModel.h #import #import "LMTestModel.h" @interface LMTestCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *nameLabel; @property (weak, nonatomic) IBO...
分类:其他好文   时间:2016-05-12 16:28:47    阅读次数:140
iOS开发 - 第01篇 - UI基础 - 01 - 从Storyboard开始学习
1、UIViewController 2、IBAction & IBOutlet 3、App开发步骤 4、关闭键盘 5、私有扩展 6、域名 & 反向域名 7、移动控件 8、魔法数字(View.tag)...
分类:移动开发   时间:2016-05-12 15:25:09    阅读次数:177
Xcode屏幕图片截取
#import "ViewController.h" @interface ViewController () //显示图片 @property (weak, nonatomic) IBOutlet UIImageView *imageView; //pan手指刚开始移动的位置 @property (nonatomic, assign) CGPoint startPoint; //pan手势结束...
分类:其他好文   时间:2016-05-12 13:47:08    阅读次数:141
二维码生成
#import "ViewController.h" #import <CoreImage/CoreImage.h> @interface ViewController () @property (weak, nonatomic) IBOutlet UIImageView *imageView; @ ...
分类:其他好文   时间:2016-05-12 06:54:43    阅读次数:236
UIWebView
#import "ViewController.h" @interface ViewController ()<UIWebViewDelegate> @property (weak, nonatomic) IBOutlet UIWebView *webView; @property (weak, n ...
分类:Web程序   时间:2016-05-11 14:54:40    阅读次数:199
NSURLSessionDataDelegate 文件下载
#import "ViewController.h" #define FileName @"121212.mp4" @interface ViewController ()<NSURLSessionDataDelegate> @property (weak, nonatomic) IBOutlet ...
分类:Web程序   时间:2016-05-11 06:56:45    阅读次数:193
NSURLConnection 大文件下载
#import "ViewController.h" @interface ViewController ()<NSURLConnectionDataDelegate> @property (weak, nonatomic) IBOutlet UIProgressView *progressView ...
分类:Web程序   时间:2016-05-11 06:46:42    阅读次数:156
IOS CoreAnimation
@property (weak, nonatomic) IBOutlet UIView *redView;@property (weak, nonatomic) IBOutlet UILabel *label; 代码收集来自: http://www.cnblogs.com/zzuliliu/p/54 ...
分类:移动开发   时间:2016-05-08 01:01:30    阅读次数:286
317条   上一页 1 ... 3 4 5 6 7 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!