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

objective-c 628

#Objective-C
iOS实现爆炸的效果

    CAEmitterLayer *emitter = [CAEmitterLayer layer];     emitter…

2015-06-28 762

#Objective-C
iOS AFNetWorking 请求json数据

1.请求json数据,使用AFHTTPRequestOperation完成 NSString *str=[NSString stringWithFormat:@"http…

2015-06-27 422

#Objective-C
iOS 8 实现获取当前定位信息

// // ViewController.m // LocationDemo // // Created by LaughingZhong on 14/11/12. // Copy…

2015-06-27 908

#Objective-C
json解析NSJSONSerialization方法

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

2015-06-26 648

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

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

2015-06-26 267

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

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

2015-06-26 1,013

#Objective-C
网络状态检测Reachability

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

2015-06-26 1,010

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

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

2015-06-26 388

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

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

2015-06-26 578

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

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

2015-06-26 854

#Objective-C
NSXMLParser 解析xml详解

#import "ViewController.h" #import "Video.h" @interface ViewController…

2015-06-26 537

#Objective-C
UIDatePicker使用

1.    Locale 设置DatePicker的地区,即设置DatePicker显示的语言。 // 1.跟踪所有可用的地区,取出想要的地区 NSL…

2015-06-26 582
1 19 20 21 22 23 53