手机开发
-
iOS定时通知详解手机开发
#pragma mark 添加本地通知 -(void)addLocalNotification{ //定义本地通知对象 UILocalNotification *notificat…
-
iOS调用相册和摄像头详解手机开发
– (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the vi…
-
iOS开发 根据日期计算是星期几详解手机开发
NSDateComponents *_comps = [[NSDateComponents alloc] init]; [_comps setDay:23]; [_comps se…
-
IOS中十六进制的颜色转换为UIColor详解手机开发
#pragma mark – 颜色转换 IOS中十六进制的颜色转换为UIColor + (UIColor *) colorWithHexString: (NSString *)co…
-
UIWebView自适应内容的高度详解手机开发
//自适应文字的高度 – (void)webViewDidFinishLoad:(UIWebView *)webView { NSString *height_str= [webV…
-
IOS UIButton使用详解手机开发
第一、UIButton的定义 UIButton *button=[[UIButton buttonWithType:(…
-
[iOS]图片压缩&保存View为内容Img详解手机开发
1、图片的压缩 封装类方法 + (UIImage*)imageWithImageSimple:(UIImage*)image scaledToSize:(CGSize)newSiz…
-
iOS判断字符串是否为合法邮箱地址详解手机开发
– (IBAction)saveEmailAction:(id)sender { if ([self isValidateEmail:_mailField.text]) { [se…
-
ios怎么判断日期是周末详解手机开发
– (NSString *)calculateWeek:(NSDate *)date{ //计算week数 NSCalendar * myCalendar = [NSCalenda…
-
iOS图片处理,截图,缩放,存储详解手机开发
图片的处理大概分 截图(capture), 缩放(scale), 设定大小(resize), 存储(save) 1.等比率缩放 – (UIIma…