会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
PJXWang
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2019年1月22日
码云的脚本配置Mac版
摘要: 1. 生成公钥 ssh-keygen -t rsa -C "your@email.com" 注意:在选择文件存储路径时,直接回车,保存在默认路径下 2..查看public key cat ~/.ssh/id_rsa.pub 3.将公钥添加到码云SSH公钥页面(https://gitee.com/pr
阅读全文
posted @ 2019-01-22 19:41 PJXWang
阅读(343)
评论(1)
推荐(0)
编辑
2018年5月23日
socket 编程
摘要: #import <sys/socket.h> #import <netinet/in.h> #import <arpa/inet.h> #import <unistd.h> /* 1 创建Socket 参数 domain:协议域AF_INET->IPV4 type: socket类型SOCK_STR
阅读全文
posted @ 2018-05-23 15:19 PJXWang
阅读(151)
评论(0)
推荐(0)
编辑
2018年2月8日
细说KVO
摘要: @interface Dog : NSObject @property(nonatomic)NSInteger age; @property(nonatomic)NSInteger *level; @end #import <Foundation/Foundation.h> #import "Dog
阅读全文
posted @ 2018-02-08 16:00 PJXWang
阅读(176)
评论(0)
推荐(0)
编辑
2017年5月19日
脚本修改图片(添加文字和叠加)
摘要: brew update brew install ImageMagick brew install ghostscript 如果中间发生错误,运行这个命令:brew doctor mageMagick中有许多命令,但在本教程中,你需要用到的是convert和composite(转换和组合) conv
阅读全文
posted @ 2017-05-19 10:51 PJXWang
阅读(379)
评论(2)
推荐(0)
编辑
iOS APPIcon 修改(脚本)
摘要: echo "${BUILT_PRODUCTS_DIR} 运行路径echo "${SRCROOT}" 项目路径 IFS=$'\n'echo $(find ${SRCROOT} -name "AppIcon60x60@2x.png")此命令$ { SRCROOT }文件夹递归搜索文件AppIcon60x
阅读全文
posted @ 2017-05-19 10:40 PJXWang
阅读(471)
评论(0)
推荐(0)
编辑
2017年5月8日
添加引导滚动页
摘要: - (void)guidePages { //数据源 NSArray *imageArray = @[ @"1.jpg", @"2.jpg", @"3.jpg", @"4.jpg" ]; // 初始化方法1 MZGuidePages *mzgpc = [[MZGuidePages alloc] in
阅读全文
posted @ 2017-05-08 17:38 PJXWang
阅读(111)
评论(0)
推荐(0)
编辑
2016年11月7日
取消画面切换&不使用Segue的画面切换
摘要: 两个画面之间的切换只要设置Segue后就可以了,如果已经设置了Segue由于某些原因需要时Segue暂时失去作用,只要实现shouldPerformSegueWithIdentifier:sender:方法,返回NO -(BOOL)shouldPerformSegueWithIdentifier:(
阅读全文
posted @ 2016-11-07 20:30 PJXWang
阅读(146)
评论(0)
推荐(0)
编辑
2016年10月25日
iOS区分不同类型设备,加载不同的Window
摘要: if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) { self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_iPhone" b
阅读全文
posted @ 2016-10-25 11:30 PJXWang
阅读(149)
评论(0)
推荐(0)
编辑
2016年10月21日
网络基础
摘要: URL的基本格式:协议://主机地址/路径 1.协议:不同的协议代表着不同的资源查找方式,资源传输方式 2.主机地址:存放着资源的主机(服务器)的IP地址(或是域名) 3.路径:资源在主机中的具体位置 URL中常见的协议: HTTP:开发中常用,超文本传输协议,访问的是远程的网路资源,格式是http
阅读全文
posted @ 2016-10-21 15:43 PJXWang
阅读(118)
评论(0)
推荐(0)
编辑
2016年10月12日
RunLoop
摘要: 1.概念: 运行循环,内部有do-while循环实现的 保持程序的持续运行,处理APP各种事件(滑动,定时,selector),节省CPU资源,提高程序性能 一个线程对应一个runloop,主线程的RunLoop随着程序已自动创建好,但是子线程的RunLoop需要手动创建 每次RunLoop启动时,
阅读全文
posted @ 2016-10-12 15:18 PJXWang
阅读(155)
评论(0)
推荐(0)
编辑
下一页