摘要: 1、进入苹果开发者官网developer.apple.com,点击member center,进入登录界面。 2、输入你的开发者账号和密码,登录后会跳转到“Select your team”这个界面。 3、选择你的team,进入到个人中心,选择“ Certificates, Identifiers 阅读全文
posted @ 2016-03-08 15:27 刚刚888 阅读(307) 评论(0) 推荐(0) 编辑
摘要: //#import "sys/utsname.h" struct utsname systemInfo; uname(&systemInfo); NSString *deviceString = [NSString stringWithCString:systemInfo.machine encod 阅读全文
posted @ 2016-03-08 13:43 刚刚888 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 将颜色合成图片 将颜色合成图片 +(UIImage *)imageWithColor:(UIColor *)color { CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); UIGraphicsBeginImageContext(rect.size) 阅读全文
posted @ 2016-03-08 12:46 刚刚888 阅读(230) 评论(0) 推荐(0) 编辑
摘要: HTML代码: <html> <head> <title>HTML中用JS调用OC方法</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> [removed] function openAlbum() 阅读全文
posted @ 2016-03-08 12:37 刚刚888 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 删除本地文件 #ifndef USERINFOPATH #define USERINFOPATH [NSString stringWithFormat:@"%@/%@info.plist",DOCUMENTS, [[NSUserDefaults standardUserDefaults] strin 阅读全文
posted @ 2016-03-08 12:36 刚刚888 阅读(180) 评论(0) 推荐(0) 编辑
摘要: NSArray倒序 NSArray *tmparr = [[upLoadImageArr reverseObjectEnumerator] allObjects]; ios 正则表达式替换 1. 不可变字符串 (content 是不可变) NSRegularExpression *regularEx 阅读全文
posted @ 2016-03-08 12:35 刚刚888 阅读(158) 评论(0) 推荐(0) 编辑
摘要: tableView和scrollView滚动起冲突 tableView也是继承的scrollView,所以在滚动的时候也会触发scrollView的代理方法,在scrollViewDidScroll中做一下类型判断就可以了 - (void)scrollViewDidScroll:(UIScrollV 阅读全文
posted @ 2016-03-08 12:35 刚刚888 阅读(264) 评论(0) 推荐(0) 编辑
摘要: // 这里做预加载 CGPoint currentOffset = scrollView.contentOffset; NSTimeInterval currentTime = [NSDate timeIntervalSinceReferenceDate]; NSTimeInterval timeD 阅读全文
posted @ 2016-03-08 12:34 刚刚888 阅读(345) 评论(0) 推荐(0) 编辑
摘要: func isIphone6() -> Bool { if screenWidth() > 320 { return true } else { return false } } func isIphone6Plus() -> Bool { if screenWidth() > 375 { retu 阅读全文
posted @ 2016-03-08 12:33 刚刚888 阅读(248) 评论(0) 推荐(0) 编辑
摘要: //To get string from the title of the HTML page: NSString *currentURL = [theWebView stringByEvaluatingJavaScriptFromString:@"document.getElementsByTag 阅读全文
posted @ 2016-03-08 12:32 刚刚888 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 用Block封装ASIHttpRequest 横方便的网络请求方法,不用每次都写代理方法.使代码先得很整齐,不会凌乱. 接口部分: // // LYHASIRequestBlock.h // ASIBlockTest // // Created by Charles Leo on 14-7-23. 阅读全文
posted @ 2016-03-08 12:32 刚刚888 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 用nstimer实现倒计时 // [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:YES]; // - (void)ti 阅读全文
posted @ 2016-03-08 12:31 刚刚888 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 支持 iPhone 6 以下. 支持 iPhone 及 iPad +(NSString*)getLaunchImageName { NSArray* images= @[@"LaunchImage.png", @"LaunchImage@2x.png",@"LaunchImage-700@2x.pn 阅读全文
posted @ 2016-03-08 12:31 刚刚888 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 这段代码是实现了类似QQ空间"我的空间"里面的圆形头像 //圆形的头像 UIImageView * headImage = [[UIImageView alloc]initWithFrame:CGRectMake(100, 300, 120, 120)]; headImage.backgroundC 阅读全文
posted @ 2016-03-08 12:30 刚刚888 阅读(259) 评论(0) 推荐(0) 编辑
摘要: if ([CLLocationManager locationServicesEnabled] && ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorized || [CLLocationManager 阅读全文
posted @ 2016-03-08 12:27 刚刚888 阅读(528) 评论(0) 推荐(0) 编辑
摘要: - (void) createAdScrollView { _view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, 150)]; [self.view addSubview:_view]; _scrollView = [[UIScr 阅读全文
posted @ 2016-03-08 12:26 刚刚888 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Corelocation地理定位Map Kit地图展示 在移动互联网的时代,移动app能解决用户的很多生活琐事,比如 导航:去任意陌生的地方 周边找餐馆找酒店,找银行,找电影院在上述应用中都用到了地图定位功能,在ios开发中想要加入这2大功能必须基于2个框架开发 Map Kit 用于地图展示 Cor 阅读全文
posted @ 2016-03-08 12:25 刚刚888 阅读(182) 评论(0) 推荐(0) 编辑
摘要: youtube下载神器:https://github.com/rg3/youtube-dl我擦咧vim插件:https://github.com/Valloric/YouCompleteMevim插件配置:https://github.com/spf13/spf13-vim ------------ 阅读全文
posted @ 2016-03-08 12:22 刚刚888 阅读(1163) 评论(0) 推荐(0) 编辑
摘要: 键盘透明: textField.keyboardAppearance = UIKeyboardAppearanceAlert; 状态栏的网络活动风火轮是否旋转: [UIApplication sharedApplication].networkActivityIndicatorVisible , 默 阅读全文
posted @ 2016-03-08 12:16 刚刚888 阅读(174) 评论(0) 推荐(0) 编辑
摘要: UIAlertView *theAlert = [[[UIAlertViewalloc] initWithTitle:@"Atention" message: @"I'm a Chinese!" delegate:nil cancelButtonTitle:@"Cancel" otherButton 阅读全文
posted @ 2016-03-08 12:13 刚刚888 阅读(113) 评论(0) 推荐(0) 编辑