摘要: 转发地址:http://www.cnblogs.com/oscarxie/p/3894559.html 1. 爬墙因为后续安装过程中可能会碰到墙的问题,所以首先得解决爬墙的问题。我的方便,公司提供代理。 2. java guowenxie-macbookair:~ guowenxie$ java - 阅读全文
posted @ 2017-07-19 14:39 萧十一郎oo 阅读(180) 评论(0) 推荐(0) 编辑
摘要: mac下mysql的DMG格式安装内有安装文件,却没有卸载文件……很郁闷的事。1 sudo rm /usr/local/mysql2 sudo rm -rf /usr/local/mysql*3 sudo rm -rf /Library/StartupItems/MySQLCOM4 sudo rm 阅读全文
posted @ 2017-04-28 16:16 萧十一郎oo 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 参考网址:http://www.jianshu.com/p/b754709135fb http://www.jianshu.com/p/443a5b8f3894 注意:封装静态库时要注意的地方: 1、如果要封装的文件中有派生类,比如NSString+helper这样的写法,那就需要把TARGETS- 阅读全文
posted @ 2017-03-09 11:57 萧十一郎oo 阅读(214) 评论(0) 推荐(0) 编辑
摘要: //初始化textfield并设置位置及大小 UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 130, 30)]; //设置边框样式,只有设置了才会显示边框样式 text.borderStyle = U 阅读全文
posted @ 2017-02-20 14:52 萧十一郎oo 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 捕捉图片文字的软件:Picatext.v1.0 模拟网络环境的软件:hardware_io_tools_for_xcode__october_2013 读取PDF的软件:PDF Expert 20 马克飞象 clean Mac webstorm 文件比较工具 Beyond_Compare-YY-Tr 阅读全文
posted @ 2017-02-20 14:52 萧十一郎oo 阅读(158) 评论(0) 推荐(0) 编辑
摘要: <!--?xml version="1.0" encoding="UTF-8"?--> 修改spec文件的version: git commit -am"version 0.1.1" git push origin master -u git tag 0.1.1 git push --tags 在包 阅读全文
posted @ 2017-02-20 14:51 萧十一郎oo 阅读(222) 评论(0) 推荐(0) 编辑
摘要: #import "Person.h"@interface Person (PersonCategory) // 添加Person中没有的name属性 @property (nonatomic, copy) NSString *name; @end #import "Person+PersonCate 阅读全文
posted @ 2017-02-20 14:50 萧十一郎oo 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 应用可以在后台运行或者挂起,该场景的状态跃迁过程见图2-22,共经历3个阶段4个状态:Active → Inactive → Background→Suspended。 q 在Active→Inactive阶段。调用applicationWillResignActive:方法,发出UIApplica 阅读全文
posted @ 2017-02-20 14:49 萧十一郎oo 阅读(156) 评论(0) 推荐(0) 编辑
摘要: http://www.jianshu.com/p/7ef5814a871b 解决WKContentView没有isSecureTextEntry方法造成的crash 程序中有web页面,使用WKWebView,但是有个crash一直存在:[WKContentView isSecureTextEntr 阅读全文
posted @ 2017-02-20 14:48 萧十一郎oo 阅读(805) 评论(0) 推荐(0) 编辑
摘要: UIView和UIWindow展示了应用的用户界面,同时负责界面的交互。其中UIView表示屏幕上的一块矩形区域,它在App中占有绝对重要的地位,因为IOS中几乎所有可视化控件都是UIView的子类。负责渲染区域的内容,并且响应该区域内发生的触摸事件。 一、UIView简介 1.UIView功能及视 阅读全文
posted @ 2017-02-20 14:47 萧十一郎oo 阅读(180) 评论(0) 推荐(0) 编辑