iOS/Objective-C
文章平均质量分 58
ArnoldLegend
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Reachability判断网络状态for ARC
Reachability.h /* Copyright (c) 2011, Tony Million. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the foll原创 2012-07-18 16:48:30 · 1292 阅读 · 0 评论 -
判断NSString是不是纯数字
//判断是不是数字 - (BOOL)isPureInt:(NSString*)string{ NSScanner* scan = [NSScanner scannerWithString:string]; int val; return[scan scanInt:&val] && [scan isAtEnd]; }原创 2012-07-18 16:42:07 · 1264 阅读 · 0 评论 -
NSURLConnection用法
引入NSURLConnectionDelegate委托 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:stringUrl] cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData t原创 2012-07-18 17:02:35 · 599 阅读 · 0 评论
分享