码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
运行循环
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additio.....
分类:其他好文   时间:2015-09-03 12:47:25    阅读次数:181
延时执行
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // 运行循环本质上就是一个死循...
分类:其他好文   时间:2015-09-03 00:41:58    阅读次数:235
异步函数
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; }- (void)touchesB.....
分类:其他好文   时间:2015-09-02 08:16:00    阅读次数:153
同步函数
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additio.....
分类:其他好文   时间:2015-09-02 08:15:22    阅读次数:160
线程间的通信 代码
#import "ViewController.h"@interface ViewController ()//图片框 UIImageView@property (weak, nonatomic) IBOutlet UIImageView *imageView;@end@implementation...
分类:编程语言   时间:2015-09-02 01:53:01    阅读次数:158
IOS第15天(2,事件处理hitTest练习)
***hitTest 获取最合适的点@implementation HMGreenView- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ NSLog(@"%s",__func__);}// 获取 最合适的 ...
分类:移动开发   时间:2015-08-31 17:11:08    阅读次数:139
IOS第15天(1,事件处理View的拖拽)
*******view 一些方法#import "HMView.h"@implementation HMView// 一个完整的触摸过程// touchesBegan -> touchesMoved -> touchesEnded/* NSArray 集合 有序 NSSet 无序 *//...
分类:移动开发   时间:2015-08-31 16:51:06    阅读次数:222
iOS 判断设备是否越狱了
1 #import "PrisonBreakCheck.h" 2 3 @implementation PrisonBreakCheck 4 /** 5 * 判断iPhone是否越狱了 6 */ 7 +(BOOL)checkPrisonBreak 8 { 9 //获取当前环境参数10 ...
分类:移动开发   时间:2015-08-31 16:47:36    阅读次数:159
NSString类方法同步请求、使用NSData方法同步请求 下载图片、数据
#import "ViewController.h" @interface ViewController () @property(nonatomic,weak)IBOutlet UIButton *button; @property(nonatomic,weak)IBOutlet UIImageView *imageView; @end @implementation ViewCo...
分类:其他好文   时间:2015-08-30 01:01:23    阅读次数:164
视频播放
{// 播放器 AVPlayer *player;// 承载视图 UIView *contentView;// 控件承载视图 UIView *controlView;// 进度条 UISlider *progressSlider;}@end@implementation ViewCon...
分类:其他好文   时间:2015-08-29 16:39:46    阅读次数:187
1803条   上一页 1 ... 97 98 99 100 101 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!