11 2016 档案

 
iOS判断程序在前台还是后台
摘要:[UIApplication sharedApplication].applicationState will return current state, check it possible values and don’t create unnecessary flags when you can 阅读全文
posted @ 2016-11-28 11:15 Stars-OnMyWay 阅读(7249) 评论(0) 推荐(1)
iOS Xcodebuild
摘要:简介 xcodebuild 是苹果发布自动构建的工具。它在一个Xcode项目下能构建一个或者多个targets ,也能在一个workspace或者Xcode项目上构建scheme,总的来说,用它没错就是了。 用法说明 Tips:在终端输入man xcodebuild,可以看到Description里 阅读全文
posted @ 2016-11-23 14:28 Stars-OnMyWay 阅读(319) 评论(0) 推荐(0)
linux grep 命令
摘要:Linux系统中grep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来。grep全称是Global Regular Expression Print,表示全局正则表达式版本,它的使用权限是所有用户。 grep的工作方式是这样的,它在一个或多个文件中搜索字符串模板。如 阅读全文
posted @ 2016-11-09 16:32 Stars-OnMyWay 阅读(209) 评论(0) 推荐(0)
iOS 10 UserNotifications 框架解析
摘要:摘自:https://onevcat.com/2016/08/notification/ iOS 10 中以前杂乱的和通知相关的 API 都被统一了,现在开发者可以使用独立的 UserNotifications.framework 来集中管理和使用 iOS 系统中通知的功能。在此基础上,Apple 阅读全文
posted @ 2016-11-09 10:42 Stars-OnMyWay 阅读(345) 评论(0) 推荐(0)