qfish/Bee-Xcode-Template

https://github.com/qfish/Bee-Xcode-Template

Bee-Xcode-Template

Xcode Template for BeeFramework.

You can find old versions here, such as Xcode5.

Install

  1. Download this package or clone this repo.
  2. Open the dir with terminal.
  3. Run command below:
  sh install.sh

Then when create a new project in Xcode, it should like this:

And when create a new file in Xcode, it should like this:

Uninstall

  sh uninstall.sh

xproj.sh

this script can batch adding compile flags like -fno-objc-arcor -fobjc-arc.

Get More info here https://github.com/qfish/xproj.

Run command below get Help.

  sh xproj.sh
时间: 2024-08-12 14:27:21

qfish/Bee-Xcode-Template的相关文章

App Distribution Guide--(三)---Configuring Your Xcode Project for Distribution

Configuring Your Xcode Project for Distribution You can edit your project settings anytime, but some settings are necessary during development. Others are recommended when you distribute your app for beta testing and required when you submit your app

Xcode插件开发

一.安装模板 1.git clone https://github.com/kattrali/Xcode-Plugin-Template.git 2.cd Xcode-Plugin-Template 3.mkdir ~/Library/Developer/Xcode/Template 4.mv ./Project\ Templates/ ~/Library/Developer/Xcode/Template\ 5.重启XCODE后,会看到模板中多出了OS X-Application Plug-in

App Distribution Guide (二)

Configuring Your Xcode Project for Distribution  You can edit your project settings anytime, but some settings are necessary during development. Others are recommended when you distribute your app for beta testing and required when you submit your ap

Page View Controllers

You use a page view controller to present content in a page-by-page manner. A page view controller manages a self-contained view hierarchy. The parent view of this hierarchy is managed by the page view controller, and the child views are managed by t

(转)TDD的iOS开发初步以及Kiwi使用入门

本文转自“瞄神”博客 TDD的iOS开发初步以及Kiwi使用入门 测试驱动开发(Test Driven Development,以下简称TDD)是保证代码质量的不二法则,也是先进程序开发的共识.Apple一直致力于在iOS开发中集成更加方便和可用的测试,在Xcode 5中,新的IDE和SDK引入了XCTest来替代原来的SenTestingKit,并且取消了新建工程时的“包括单元测试”的可选项(同样待遇的还有使用ARC的可选项).新工程将自动包含测试的target,并且相关框架也搭建完毕,可以说

Universal Framework for iOS

Hello my friends, Due to some bugs and questions with the old tutorial, I'm creating this new one, much more simpler and less bugs than the another one. I'll not post the old link here because everything you need to know you can find right here. Nowa

Swift中使用Core Data (一)

CoreData是Mac.iPhone应用里标准的数据存储方法.所以,我们很有必要学习这个技术.那么我们要创建什么呢?首先是一个table view来处理数据,添加.删除.编辑,还有查找和排序.这些数据会被一直保存,即使是设备重启了都会存在.因为,这些数据时放在sqlite里的. 苹果的官方是这么描述Core Data的,“Core Data库是一个高层的自动的管理对象生命周期和持久话的解决方案”. 下面,我们就一步一步的开始.首先创建一个Xcode6的项目,选择single-view-temp

【Swift】UNNotificationServiceExtension

一.简介 An object that modifies the content of a remote notification before it's delivered to the user. 是一个能在远程通知传递到用户之前进行修改内容的对象. 二.概述 A UNNotificationServiceExtension object provides the entry point for a Notification Service app extension, which lets

Xcode中的变量模板(variable template)的用法

大熊猫猪·侯佩原创或翻译作品.欢迎转载,转载请注明出处. 如果觉得写的不好请多提意见,如果觉得不错请多多支持点赞.谢谢! hopy ;) 你可能经常会写一些小的代码片段,里面自然少不了一些关键的变量.你会把这些代码片段放到网上,比如github里,作为示例. 但是有个问题,就是上述代码片段中的变量会根据不同系统,不同用户发生变化.在你这里有效的,可能在别人那就会无效. 举个不恰当的例子,比如其中有一个变量是你服务器的秘钥ID: NSString *keyID = @"12345678"