上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: 转发至:http://m.blog.csdn.net/article/details?id=8121915 //初始化textfield并设置位置及大小 UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 阅读全文
posted @ 2016-03-17 23:17 pruple_Boy 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 关于UITabView和UIAlertController,UIAlertAction以及UINavigation,值修改的传递 集合嵌套集合的操作 声明 两个必须的的代理 实现部分代码 - (void)viewDidLoad { [super viewDidLoad]; // 创建一个TabVie 阅读全文
posted @ 2016-03-16 22:43 pruple_Boy 阅读(583) 评论(0) 推荐(0) 编辑
摘要: iOS传值方式之5:通知传值 第一需要发布的消息,再创建NSNotification通知对象,然后通过NSNotificationCenter通知中心发布消息(NSNotificationCenter单例) - (void)touchesBegan:(NSSet<UITouch *> *)touch 阅读全文
posted @ 2016-03-15 20:38 pruple_Boy 阅读(727) 评论(0) 推荐(0) 编辑
摘要: // 要实现单例传值,那就必须得新建一个类做为单例 提供创建该类对象的类方法(因为是要在alloc开辟内存空间后赋值)。所有在.h文件中声明该方法 + (instancetype)defaultUIImageView; 实现该方法 前提得有一个静态全局变量来保存该类对象的指针 // 静态全局变量 s 阅读全文
posted @ 2016-03-15 18:04 pruple_Boy 阅读(415) 评论(0) 推荐(1) 编辑
摘要: 计算文件夹下所有文件的大小 // 查看错误信息 __autoreleasing NSError *error; // 文件管理对象 NSFileManager *manager = [NSFileManager defaultManager]; // 读取路径 NSString *path = @" 阅读全文
posted @ 2016-03-14 22:29 pruple_Boy 阅读(1026) 评论(0) 推荐(0) 编辑
摘要:     // 1.全国省市:得到的是省和市        // 读取文件路径         NSArray *arr = [NSArray arrayWithContentsOfFile:@"/Users/Mu/Documents/MyXcode-MyNotes/OC/Read.plist/Rea 阅读全文
posted @ 2016-03-13 20:14 pruple_Boy 阅读(1463) 评论(0) 推荐(0) 编辑
摘要: 可以直接copy运行研究 .m头文件和声明的常量(宏和const) #import "ViewController.h" // UIScrollView的尺寸 const CGFloat WSCROLL = 300; const CGFloat HSCROLL = 200; #define VWSC 阅读全文
posted @ 2016-03-12 22:47 pruple_Boy 阅读(749) 评论(0) 推荐(0) 编辑
摘要: .h #import <UIKit/UIKit.h> #define WIDTH self.view.frame.size.width #define HEIGHT self.view.frame.size.height @interface ViewController : UIViewContr 阅读全文
posted @ 2016-03-11 22:59 pruple_Boy 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 自定义控件.h #import <UIKit/UIKit.h> #import "PPViewtouchesBeginDelegate.h" @interface PPView : UIView // 这样写避免了内存泄露的问题 @property (nonatomic, strong)UIView 阅读全文
posted @ 2016-03-11 22:53 pruple_Boy 阅读(3191) 评论(0) 推荐(0) 编辑
摘要: 标签: swift新特性(__nullable和__nonnull) 最近在看老师写代码的时候经常遇到两个陌生的关键字,但是当我在我的电脑上敲得时候就是敲不出,后来才知道这是为了swift与OC混编的时候产生的一个新特性,就很认真的研究了一下。 在swift中,可以使用!和?来表示一个对象是opti 阅读全文
posted @ 2016-03-10 23:23 pruple_Boy 阅读(197) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页