05 2016 档案

SublimeText 正则查找
摘要:### 正则查找CTRL + H 开启替换查找功能### 正则表达式```get(.*)Model```以 get 开始以 Model结束中间以 (.*) 通配### 效果来自为知笔记(Wiz) 阅读全文

posted @ 2016-05-18 22:37 大魔术师 阅读(6818) 评论(0) 推荐(0)

UIStackView 支持 IOS7.0+
摘要:github https://github.com/forkingdog/FDStackView 使用方法 Podfile platform :ios, '7.0'pod "FDStackView", "1.0" pod install --verbose --no-repo-update 导入即可使用,在使用 storyboard 时,设置 builds for 9.0 and la... 阅读全文

posted @ 2016-05-16 17:40 大魔术师 阅读(159) 评论(0) 推荐(0)

状态栏颜色
摘要://设置NavigationBar背景颜色 [[UINavigationBar appearance] setBarTintColor:[UIColor redColor]]; //@{}代表Dictionary [[UINavigationBar appearance] setTitleTextAttributes:@{ NSForegroundColorAttributeName ... 阅读全文

posted @ 2016-05-16 16:28 大魔术师 阅读(140) 评论(0) 推荐(0)

cocoapods
摘要:安装 http://www.jianshu.com/p/bdf9f66740c6http://blog.csdn.net/showhilllee/article/details/38398119http://blog.csdn.net/jymn_chen/article/details/19202397 sudo gem install cocoapods 搜索 pod search EC... 阅读全文

posted @ 2016-05-16 16:27 大魔术师 阅读(130) 评论(0) 推荐(0)

Objectc 基础类型
摘要:来自为知笔记(Wiz) 阅读全文

posted @ 2016-05-16 16:23 大魔术师 阅读(94) 评论(0) 推荐(0)

UITableView 去除 顶部空白
摘要:NO1:代码方式 //self.automaticallyAdjustsScrollViewInsets = NO; NO2:storyboard方式 来自为知笔记(Wiz) 阅读全文

posted @ 2016-05-16 16:17 大魔术师 阅读(201) 评论(0) 推荐(0)

侧滑菜单
摘要:NO0 引入库 platform :ios, '7.0'use_frameworks!target 'MGuardian' do pod 'ECSlidingViewController', '~> 2.0.3'end 侧滑动画见附件 NO1 纯代码 #import "MEAppDelegate.h"#import "ECSlidingViewController.h"@interfac... 阅读全文

posted @ 2016-05-16 16:15 大魔术师 阅读(295) 评论(0) 推荐(0)

UICollectionView
摘要://// CollectionController.h// MGuardian//// Created by krmao on 16/5/13.// Copyright © 2016年 krmao. All rights reserved.//#import @interface CollectionController : UIViewController@end//**********... 阅读全文

posted @ 2016-05-13 18:46 大魔术师 阅读(152) 评论(0) 推荐(0)

UITabview
摘要://********************************************************************************//*自定义类 UITableViewCell START//********************************************************************************//静态变量声... 阅读全文

posted @ 2016-05-13 18:40 大魔术师 阅读(144) 评论(0) 推荐(0)

导航