上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: /// 访客视图的协议 protocol VisitorLoginViewDelegate: NSObjectProtocol { func visitorLoginViewWillRegister(); func visitorLoginViewWillLogin(); } /// 访客视图 cl 阅读全文
posted @ 2016-03-09 09:11 super1250 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 今天在计算collectionView存放最小间距的时候用到一函数 " ABS " 顺便就查了一下这些数学函数在代码中的使用.. // 函数在代码中使用 // 获得super已经计算好的布局属性 NSArray *array = [super layoutAttributesForElementsI 阅读全文
posted @ 2016-03-08 10:21 super1250 阅读(311) 评论(0) 推荐(0) 编辑
摘要: http://www.panduoduo.net/u/bd-369186934/2 UIViewController提供了一个基础的视图管理模型,可以用UIViewController管理视图的继承,及对view的管理。 属性: view:视图 (UIViewController的一个属性,用于UI 阅读全文
posted @ 2016-03-04 17:14 super1250 阅读(4401) 评论(0) 推荐(0) 编辑
摘要: 这里的两篇运行时的文章感觉还不错. 收藏: 初识iOS运行时RunTime | // TODO: http://www.saitjr.com/ios/objc-runtime.html Objective C Runtime http://tech.glowing.com/cn/objective- 阅读全文
posted @ 2016-01-22 14:44 super1250 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 在自定义导航控制器里面加以下代码就增加全屏滑动手势 >推向前一个控制器 // HBNavigationController.m // #import "HBNavigationController.h" @interface HBNavigationController ()<UIGestureRe 阅读全文
posted @ 2016-01-20 11:20 super1250 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 安装NODEJS:http://nodejs.org/(如果你安装了旧版本的需要手动安装npm,不过最新版的自带了)进入终端命令行使用npm安装cordova如下:$ sudo npm install -g cordova 阅读全文
posted @ 2016-01-15 13:07 super1250 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 本人觉得比较好用也实用的Xcode插件记录: 1. Alcatraz 插件通过它来管理 : https://github.com/alcatraz/Alcatraz.git 2. CocoaPods 第三方类通过它来管理 : https://github.com/CocoaPods/CocoaPod 阅读全文
posted @ 2015-12-19 20:41 super1250 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 1.步奏rm -rf ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcplugin2.步奏rm -rf ~/Library/Application\ Support/Alcatraz/3.步奏curl... 阅读全文
posted @ 2015-12-06 23:40 super1250 阅读(194) 评论(0) 推荐(0) 编辑
摘要: #import "LCTwoCodeImage.h"@implementation LCTwoCodeImage+(UIImage *) GotoCreatMyTwoCode :(NSString *) string { //通过传入的字符串来创建二维码初始图层渲染 CIImage * firs... 阅读全文
posted @ 2015-11-16 17:21 super1250 阅读(164) 评论(0) 推荐(0) 编辑
摘要: RegexKitLite 这个第三方库可用验证正则 // 一 .电话号码正则表达式 -(BOOL)testPhoneNumber:(NSString *)text { // #define phoneMatchingText @"^1[3-9][0-9]\\d{4,8}$" // @"[1][3-9 阅读全文
posted @ 2015-11-13 14:31 super1250 阅读(1252) 评论(0) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页