Tag Archives: 算法技巧

MKNetworkKit的基本用法(Get请求、Post请求、文件上传)

1、Get请求

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Get请求
        // 初始化网络引擎对象
        MKNetworkEngine *engine = [[MKNetworkEngine alloc] initWithHostName:@"192.168.2.176:9502/api" customHeaderFields:nil];
 
        // 创建一个Get请求
        MKNetworkOperation *op = [engine operationWithPath:@"login.php?userid=admin&userpwd=123" params:nil httpMethod:@"GET"];
 
        // 设置Get请求处理方式
        [op onCompletion:^(MKNetworkOperation *operation){        // 请求成功
 
        NSLog(@"request string: %@",[operation responseString]);
 
    } onError:^(NSError *error){        // 请求失败
 
                    NSLog(@"%@", error);
 
    }];
 
        // 入列操作(发起网络请求)
        [engine enqueueOperation:op];

2、Post请求[……]

继续阅读

汉字转拼音,iOS自带库,中文排序的一定要看

1
2
NSMutableString *ms = [[NSMutableString alloc] initWithString:@"我是中国人"];
if (CFStringTransform((__bridge CFMutableStringRef)ms, 0, kCFStringTransformM[......]<p class="read-more"><a href="https://www.yusian.com/blog/project/2014/08/20/145435681.html">继续阅读</a></p>