首页 软件开发 代码片段 objective-c ( Page 23 )

objective-c 628

#Objective-C
NSThread中cancle与exit的使用

@interface ViewController () /** 图片视图*/ @property(nonatomic,weak) UIImageView * imageView;…

2015-06-26 648

#Objective-C
iOS 启动页多停留一会

有的时候 app的启动页会一闪而过,如果想让启动页画面停留一会再启动应用 可以使用如下方式 在AppDelegate的方法 – (BOOL)application:(U…

2015-06-26 970

#Objective-C
AFNetworking框架的使用

#import "ViewController.h" #import "AFNetworking.h" @interface ViewCon…

2015-06-26 178

#Objective-C
UIButton 如何设置字体颜色

UIButton *temp = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [temp setTitle:@“test”…

2015-06-26 989

#Objective-C
json解析NSJSONSerialization方法

// //1、json转换成对象 // NSString * path = [[NSBundle mainBundle] pathForResource:@"test.j…

2015-06-26 629

#Objective-C
IOS网络请求,封装文件上传操作

头文件————————————————————————————— @interface JRUploadRequest : NSMutableURLRequest //初始化方法 …

2015-06-26 252

#Objective-C
json解析使用第三方类库JSONKit

// 使用第三方类库JSONKit // NSString * path = [[NSBundle mainBundle] pathForResource:@"test.…

2015-06-26 992

#Objective-C
网络状态检测Reachability

#import "Reachability.h" @interface JRViewController ()<UIActionSheetDelegate…

2015-06-26 993

#Objective-C
NSCondition模拟买票的过程的简单实现

@interface ViewController () @property (nonatomic, strong) NSMutableArray * array; @proper…

2015-06-26 371

#Objective-C
ios开发,将图片存到相册中

@interface IWViewController () @end @implementation IWViewController - (void)viewDidLoad {…

2015-06-26 559

#Objective-C
GCD的常用方法总结

// GCD常用方法 //—————————————————————————————————————————————————————————————————————————————…

2015-06-26 835

#Objective-C
mvvm

引用http://www.cocoachina.com/ios/20150122/10987.html

2015-06-22 486
1 21 22 23 24 25 53