很不错就摘过来了 转载自http://blog.csdn.net/gf771115/article/details/47393423 属性介绍 摘自 http://blog.sin…
//如果网址中有中文 或者 非法字符 需要转换 urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8S…
UIViewController *v2 = [self.storyboard instantiateViewControllerWithIdentifier:@"v2"]; v2…
//添加控件 - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading…
@interface ViewController (){ NSMutableArray *arrayData; //保存城市id NSMutableArray *arrayCit…
+ (UIColor *)colorFromHex:(NSString *)hexString alpha:(CGFloat)alpha { int i=0,temp=0,n; c…
网络监听用到的类为Reachability.h,这个Xcode项目里面是不自带的,需要从github上面下载,在使用的时候记着导入SystemConfiguration.frame…
/////////////// 一、NSString 创建字符串。 NSString *astring = @"This is a String!"; 创建空字…
1.判断邮箱格式是否正确的代码 //利用正则表达式验证 -(BOOL)isValidateEmail:(NSString *)email { NSString *emailRege…
#import "ViewController.h" #import "TableViewCell.h" #import "PeripheralViewController.h" …
// // HttpTool.h // 邦尼医生 // // Created by peony on 15/7/21. // Copyright (c) 2015年 com.peo…
//创建自定义视图 UIView *vs = [[UIView alloc] initWithFrame:CGRectMake(2, 2, 60, 40)]; //设置自定义视图的…