TemplateInfo 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.DS_Store +0 -0
- data/.gitignore +2 -0
- data/TemplateInfo.gemspec +1 -1
- data/bin/tif_create.rb +157 -0
- data/lib/TemplateInfo/version.rb +1 -1
- data/test.xctemplate/.DS_Store +0 -0
- data/test.xctemplate/TemplateInfo.plist +2830 -0
- data/test.xctemplate/TemplateInfo.xml +2842 -0
- data/test.xctemplate/libs/BeeFramework/Bee.h +35 -0
- data/test.xctemplate/libs/BeeFramework/Bee_Precompile.h +143 -0
- data/test.xctemplate/libs/BeeFramework/Core/Bee_Core.h +36 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Foundation.h +54 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Foundation.mm +33 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Log.h +64 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Log.mm +164 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Performance.h +111 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Performance.mm +122 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Runtime.h +98 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Runtime.mm +437 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Sandbox.h +45 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Sandbox.mm +81 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Singleton.h +47 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Singleton.mm +34 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_SystemInfo.h +62 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_SystemInfo.m +147 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Thread.h +64 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Thread.mm +91 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSArray+BeeExtension.h +76 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSArray+BeeExtension.m +300 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSData+BeeExtension.h +44 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSData+BeeExtension.m +92 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDate+BeeExtension.h +44 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDate+BeeExtension.m +85 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDictionary+BeeExtension.h +90 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDictionary+BeeExtension.m +509 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSNumber+BeeExtension.h +50 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSNumber+BeeExtension.m +64 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeJSON.h +43 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeJSON.m +116 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeNotification.h +66 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeNotification.m +150 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeProperty.h +210 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeProperty.m +34 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTicker.h +41 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTicker.m +156 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTypeConversion.h +49 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTypeConversion.m +109 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSString+BeeExtension.h +86 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSString+BeeExtension.m +464 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_Network.h +36 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_Network.m +33 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_Request.h +144 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_Request.m +560 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_RequestQueue.h +99 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_RequestQueue.m +742 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Extension/NSObject+BeeRequest.h +62 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Extension/NSObject+BeeRequest.m +175 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/0.2.4.zip +0 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveBase.h +133 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveBase.m +641 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveRecord.h +106 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveRecord.m +1956 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Cache.h +91 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Cache.m +318 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Database.h +223 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Database.m +3007 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Keychain.h +55 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Keychain.m +173 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Storage.h +39 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Storage.m +33 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeDatabase.h +47 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeDatabase.m +81 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeKeychain.h +44 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeKeychain.m +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Bee_MVC.h +49 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Controller.h +66 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Controller.mm +228 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Message.h +209 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Message.mm +873 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_MessageQueue.h +75 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_MessageQueue.mm +389 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+ActiveRecord.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+ActiveRecord.m +150 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+HTTP.h +49 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+HTTP.mm +201 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+JSON.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+JSON.mm +118 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+XML.h +49 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+XML.mm +78 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/NSObject+BeeMessage.h +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/NSObject+BeeMessage.mm +138 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Model/Bee_Model.h +64 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Model/Bee_Model.m +190 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActionSheet.h +71 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActionSheet.m +307 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActivityIndicatorView.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActivityIndicatorView.m +152 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIAlertView.h +73 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIAlertView.m +234 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIButton.h +97 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIButton.m +424 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIDatePicker.h +78 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIDatePicker.m +362 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIGridCell.h +82 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIGridCell.m +298 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIImageView.h +110 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIImageView.m +541 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIKeyboard.h +74 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIKeyboard.m +243 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UILabel.h +46 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UILabel.m +99 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIMatrixView.h +124 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIMatrixView.m +821 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UINavigationBar.h +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UINavigationBar.m +161 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIOrientation.h +60 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIOrientation.m +146 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPageControl.h +61 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPageControl.m +190 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIProgressView.h +47 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIProgressView.m +113 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPullLoader.h +71 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPullLoader.m +236 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIScrollView.h +146 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIScrollView.m +1487 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISegmentedControl.h +60 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISegmentedControl.m +192 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISignal.h +126 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISignal.m +453 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITabBar.h +70 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITabBar.m +249 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextField.h +67 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextField.m +242 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextView.h +75 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextView.m +311 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITipsView.h +184 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITipsView.m +911 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIWebView.h +65 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIWebView.m +242 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIZoomView.h +91 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIZoomView.m +444 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_View.h +72 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_View.m +38 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/CGRect+BeeExtension.h +79 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/CGRect+BeeExtension.m +288 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIColor+BeeExtension.h +65 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIColor+BeeExtension.m +161 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIFont+BeeExtension.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIFont+BeeExtension.m +137 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIImage+BeeExtension.h +56 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIImage+BeeExtension.m +218 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeExtension.h +105 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeExtension.m +556 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeUISignal.h +53 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeUISignal.m +104 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+HoldGesture.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+HoldGesture.m +170 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+PanGesture.h +54 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+PanGesture.m +166 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+SwipeGesture.h +54 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+SwipeGesture.m +184 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+TapGesture.h +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+TapGesture.m +275 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIBoard.h +212 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIBoard.m +1219 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStack.h +111 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStack.m +694 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStackGroup.h +71 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStackGroup.m +258 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_ViewController.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_ViewController.m +36 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeExtension.h +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeExtension.m +151 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeUISignal.h +53 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeUISignal.m +92 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+UINavigationBar.h +72 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+UINavigationBar.m +175 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UICollection.h +59 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UICollection.m +249 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UILayout.h +199 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UILayout.m +1170 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIQuery.h +113 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIQuery.m +710 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIStyle.h +66 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIStyle.m +189 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplate.h +69 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplate.m +210 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateAndroid.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateAndroid.m +59 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateHTML.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateHTML.m +55 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateJSON.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateJSON.m +54 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateOmniGraffle.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateOmniGraffle.m +54 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateXML.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateXML.m +438 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_ViewLayout.h +60 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_ViewLayout.m +37 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIQuery+BeeUIStyle.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIQuery+BeeUIStyle.m +55 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIStyle+BeeUIQuery.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIStyle+BeeUIQuery.m +55 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIButton+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIButton+BeeUIStyle.m +100 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIImageView+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIImageView+BeeUIStyle.m +101 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UILabel+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UILabel+BeeUIStyle.m +48 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextField+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextField+BeeUIStyle.m +77 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextView+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextView+BeeUIStyle.m +47 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUILayout.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUILayout.m +177 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIQuery.h +44 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIQuery.m +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIStyle.h +50 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIStyle.m +283 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUILayout.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUILayout.m +178 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIQuery.h +44 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIQuery.m +58 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIStyle.h +44 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIStyle.m +57 -0
- metadata +226 -3
@@ -0,0 +1,57 @@
|
|
1
|
+
//
|
2
|
+
// ______ ______ ______
|
3
|
+
// /\ __ \ /\ ___\ /\ ___\
|
4
|
+
// \ \ __< \ \ __\_ \ \ __\_
|
5
|
+
// \ \_____\ \ \_____\ \ \_____\
|
6
|
+
// \/_____/ \/_____/ \/_____/
|
7
|
+
//
|
8
|
+
// Copyright (c) 2012 BEE creators
|
9
|
+
// http://www.whatsbug.com
|
10
|
+
//
|
11
|
+
// Permission is hereby granted, free of charge, to any person obtaining a
|
12
|
+
// copy of this software and associated documentation files (the "Software"),
|
13
|
+
// to deal in the Software without restriction, including without limitation
|
14
|
+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
15
|
+
// and/or sell copies of the Software, and to permit persons to whom the
|
16
|
+
// Software is furnished to do so, subject to the following conditions:
|
17
|
+
//
|
18
|
+
// The above copyright notice and this permission notice shall be included in
|
19
|
+
// all copies or substantial portions of the Software.
|
20
|
+
//
|
21
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
22
|
+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
23
|
+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
24
|
+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25
|
+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
26
|
+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
27
|
+
// IN THE SOFTWARE.
|
28
|
+
//
|
29
|
+
//
|
30
|
+
// UIView+TapGesture.h
|
31
|
+
//
|
32
|
+
|
33
|
+
#if (TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
|
34
|
+
|
35
|
+
#import "Bee_Precompile.h"
|
36
|
+
#import "Bee_UISignal.h"
|
37
|
+
|
38
|
+
#pragma mark -
|
39
|
+
|
40
|
+
@interface UIView(TapGesture)
|
41
|
+
|
42
|
+
@property (nonatomic, assign) BOOL tappable; // same as tapEnabled
|
43
|
+
@property (nonatomic, assign) BOOL tapEnabled;
|
44
|
+
@property (nonatomic, retain) NSString * tapSignal;
|
45
|
+
@property (nonatomic, retain) NSObject * tapObject;
|
46
|
+
@property (nonatomic, readonly) UITapGestureRecognizer * tapGesture;
|
47
|
+
|
48
|
+
AS_SIGNAL( TAPPED ); // 单击
|
49
|
+
|
50
|
+
- (void)makeTappable;
|
51
|
+
- (void)makeTappable:(NSString *)signal;
|
52
|
+
- (void)makeTappable:(NSString *)signal withObject:(NSObject *)obj;
|
53
|
+
- (void)makeUntappable;
|
54
|
+
|
55
|
+
@end
|
56
|
+
|
57
|
+
#endif // #if (TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
|
@@ -0,0 +1,275 @@
|
|
1
|
+
//
|
2
|
+
// ______ ______ ______
|
3
|
+
// /\ __ \ /\ ___\ /\ ___\
|
4
|
+
// \ \ __< \ \ __\_ \ \ __\_
|
5
|
+
// \ \_____\ \ \_____\ \ \_____\
|
6
|
+
// \/_____/ \/_____/ \/_____/
|
7
|
+
//
|
8
|
+
// Copyright (c) 2012 BEE creators
|
9
|
+
// http://www.whatsbug.com
|
10
|
+
//
|
11
|
+
// Permission is hereby granted, free of charge, to any person obtaining a
|
12
|
+
// copy of this software and associated documentation files (the "Software"),
|
13
|
+
// to deal in the Software without restriction, including without limitation
|
14
|
+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
15
|
+
// and/or sell copies of the Software, and to permit persons to whom the
|
16
|
+
// Software is furnished to do so, subject to the following conditions:
|
17
|
+
//
|
18
|
+
// The above copyright notice and this permission notice shall be included in
|
19
|
+
// all copies or substantial portions of the Software.
|
20
|
+
//
|
21
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
22
|
+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
23
|
+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
24
|
+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25
|
+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
26
|
+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
27
|
+
// IN THE SOFTWARE.
|
28
|
+
//
|
29
|
+
//
|
30
|
+
// Bee_UISignal.m
|
31
|
+
//
|
32
|
+
|
33
|
+
#if (TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
|
34
|
+
|
35
|
+
#import "Bee_Precompile.h"
|
36
|
+
#import "Bee_UISignal.h"
|
37
|
+
#import "Bee_Singleton.h"
|
38
|
+
#import "Bee_Log.h"
|
39
|
+
#import "Bee_Performance.h"
|
40
|
+
#import "UIView+BeeExtension.h"
|
41
|
+
#import "UIView+BeeUISignal.h"
|
42
|
+
#import "UIView+TapGesture.h"
|
43
|
+
|
44
|
+
#import <objc/runtime.h>
|
45
|
+
|
46
|
+
#pragma mark -
|
47
|
+
|
48
|
+
@interface __SingleTapGestureRecognizer : UITapGestureRecognizer
|
49
|
+
{
|
50
|
+
NSString * _signalName;
|
51
|
+
NSObject * _signalObject;
|
52
|
+
}
|
53
|
+
|
54
|
+
@property (nonatomic, retain) NSString * signalName;
|
55
|
+
@property (nonatomic, assign) NSObject * signalObject;
|
56
|
+
|
57
|
+
@end
|
58
|
+
|
59
|
+
#pragma mark -
|
60
|
+
|
61
|
+
@implementation __SingleTapGestureRecognizer
|
62
|
+
|
63
|
+
@synthesize signalName = _signalName;
|
64
|
+
@synthesize signalObject = _signalObject;
|
65
|
+
|
66
|
+
- (id)initWithTarget:(id)target action:(SEL)action
|
67
|
+
{
|
68
|
+
self = [super initWithTarget:target action:action];
|
69
|
+
if ( self )
|
70
|
+
{
|
71
|
+
self.numberOfTapsRequired = 1;
|
72
|
+
self.numberOfTouchesRequired = 1;
|
73
|
+
self.cancelsTouchesInView = YES;
|
74
|
+
self.delaysTouchesBegan = YES;
|
75
|
+
self.delaysTouchesEnded = YES;
|
76
|
+
}
|
77
|
+
return self;
|
78
|
+
}
|
79
|
+
|
80
|
+
- (void)dealloc
|
81
|
+
{
|
82
|
+
[super dealloc];
|
83
|
+
}
|
84
|
+
|
85
|
+
@end
|
86
|
+
|
87
|
+
#pragma mark -
|
88
|
+
|
89
|
+
@interface UIView(TapGesturePrivate)
|
90
|
+
- (__SingleTapGestureRecognizer *)getTapGesture;
|
91
|
+
@end
|
92
|
+
|
93
|
+
#pragma mark -
|
94
|
+
|
95
|
+
@implementation UIView(TapGesture)
|
96
|
+
|
97
|
+
DEF_SIGNAL( TAPPED );
|
98
|
+
|
99
|
+
@dynamic tappable;
|
100
|
+
@dynamic tapEnabled;
|
101
|
+
@dynamic tapGesture;
|
102
|
+
@dynamic tapSignal;
|
103
|
+
@dynamic tapObject;
|
104
|
+
|
105
|
+
- (__SingleTapGestureRecognizer *)getTapGesture
|
106
|
+
{
|
107
|
+
__SingleTapGestureRecognizer * tapGesture = nil;
|
108
|
+
|
109
|
+
for ( UIGestureRecognizer * gesture in self.gestureRecognizers )
|
110
|
+
{
|
111
|
+
if ( [gesture isKindOfClass:[__SingleTapGestureRecognizer class]] )
|
112
|
+
{
|
113
|
+
tapGesture = (__SingleTapGestureRecognizer *)gesture;
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
if ( nil == tapGesture )
|
118
|
+
{
|
119
|
+
tapGesture = [[[__SingleTapGestureRecognizer alloc] initWithTarget:self action:@selector(didSingleTapped:)] autorelease];
|
120
|
+
[self addGestureRecognizer:tapGesture];
|
121
|
+
}
|
122
|
+
|
123
|
+
return tapGesture;
|
124
|
+
}
|
125
|
+
|
126
|
+
- (void)didSingleTapped:(UITapGestureRecognizer *)tapGesture
|
127
|
+
{
|
128
|
+
if ( [tapGesture isKindOfClass:[__SingleTapGestureRecognizer class]] )
|
129
|
+
{
|
130
|
+
__SingleTapGestureRecognizer * singleTapGesture = (__SingleTapGestureRecognizer *)tapGesture;
|
131
|
+
|
132
|
+
if ( UIGestureRecognizerStateEnded == singleTapGesture.state )
|
133
|
+
{
|
134
|
+
if ( singleTapGesture.signalName )
|
135
|
+
{
|
136
|
+
[self sendUISignal:singleTapGesture.signalName withObject:singleTapGesture.signalObject];
|
137
|
+
}
|
138
|
+
else
|
139
|
+
{
|
140
|
+
[self sendUISignal:UIView.TAPPED];
|
141
|
+
}
|
142
|
+
}
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
- (void)makeTappable
|
147
|
+
{
|
148
|
+
[self makeTappable:nil];
|
149
|
+
}
|
150
|
+
|
151
|
+
- (void)makeTappable:(NSString *)signal
|
152
|
+
{
|
153
|
+
[self makeTappable:signal withObject:nil];
|
154
|
+
}
|
155
|
+
|
156
|
+
- (void)makeTappable:(NSString *)signal withObject:(NSObject *)obj
|
157
|
+
{
|
158
|
+
self.userInteractionEnabled = YES;
|
159
|
+
|
160
|
+
__SingleTapGestureRecognizer * singleTapGesture = [self getTapGesture];
|
161
|
+
if ( singleTapGesture )
|
162
|
+
{
|
163
|
+
singleTapGesture.signalName = signal;
|
164
|
+
singleTapGesture.signalObject = obj;
|
165
|
+
}
|
166
|
+
}
|
167
|
+
|
168
|
+
- (void)makeUntappable
|
169
|
+
{
|
170
|
+
for ( UIGestureRecognizer * gesture in self.gestureRecognizers )
|
171
|
+
{
|
172
|
+
if ( [gesture isKindOfClass:[__SingleTapGestureRecognizer class]] )
|
173
|
+
{
|
174
|
+
[self removeGestureRecognizer:gesture];
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
178
|
+
|
179
|
+
- (BOOL)tappable
|
180
|
+
{
|
181
|
+
return self.tapEnabled;
|
182
|
+
}
|
183
|
+
|
184
|
+
- (void)setTappable:(BOOL)flag
|
185
|
+
{
|
186
|
+
self.tapEnabled = flag;
|
187
|
+
}
|
188
|
+
|
189
|
+
- (BOOL)tapEnabled
|
190
|
+
{
|
191
|
+
for ( UIGestureRecognizer * gesture in self.gestureRecognizers )
|
192
|
+
{
|
193
|
+
if ( [gesture isKindOfClass:[__SingleTapGestureRecognizer class]] )
|
194
|
+
{
|
195
|
+
return gesture.enabled;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
return NO;
|
200
|
+
}
|
201
|
+
|
202
|
+
- (void)setTapEnabled:(BOOL)flag
|
203
|
+
{
|
204
|
+
__SingleTapGestureRecognizer * singleTapGesture = [self getTapGesture];
|
205
|
+
if ( singleTapGesture )
|
206
|
+
{
|
207
|
+
if ( flag )
|
208
|
+
{
|
209
|
+
self.userInteractionEnabled = YES;
|
210
|
+
}
|
211
|
+
else
|
212
|
+
{
|
213
|
+
self.userInteractionEnabled = NO;
|
214
|
+
}
|
215
|
+
|
216
|
+
singleTapGesture.enabled = flag;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
- (UITapGestureRecognizer *)tapGesture
|
221
|
+
{
|
222
|
+
for ( UIGestureRecognizer * gesture in self.gestureRecognizers )
|
223
|
+
{
|
224
|
+
if ( [gesture isKindOfClass:[__SingleTapGestureRecognizer class]] )
|
225
|
+
{
|
226
|
+
return (UITapGestureRecognizer *)gesture;
|
227
|
+
}
|
228
|
+
}
|
229
|
+
|
230
|
+
return nil;
|
231
|
+
}
|
232
|
+
|
233
|
+
- (NSString *)tapSignal
|
234
|
+
{
|
235
|
+
__SingleTapGestureRecognizer * singleTapGesture = [self getTapGesture];
|
236
|
+
if ( singleTapGesture )
|
237
|
+
{
|
238
|
+
return singleTapGesture.signalName;
|
239
|
+
}
|
240
|
+
|
241
|
+
return nil;
|
242
|
+
}
|
243
|
+
|
244
|
+
- (void)setTapSignal:(NSString *)signal
|
245
|
+
{
|
246
|
+
__SingleTapGestureRecognizer * singleTapGesture = [self getTapGesture];
|
247
|
+
if ( singleTapGesture )
|
248
|
+
{
|
249
|
+
singleTapGesture.signalName = signal;
|
250
|
+
}
|
251
|
+
}
|
252
|
+
|
253
|
+
- (NSObject *)tapObject
|
254
|
+
{
|
255
|
+
__SingleTapGestureRecognizer * singleTapGesture = [self getTapGesture];
|
256
|
+
if ( singleTapGesture )
|
257
|
+
{
|
258
|
+
return singleTapGesture.signalObject;
|
259
|
+
}
|
260
|
+
|
261
|
+
return nil;
|
262
|
+
}
|
263
|
+
|
264
|
+
- (void)setTapObject:(NSObject *)object
|
265
|
+
{
|
266
|
+
__SingleTapGestureRecognizer * singleTapGesture = [self getTapGesture];
|
267
|
+
if ( singleTapGesture )
|
268
|
+
{
|
269
|
+
singleTapGesture.signalObject = object;
|
270
|
+
}
|
271
|
+
}
|
272
|
+
|
273
|
+
@end
|
274
|
+
|
275
|
+
#endif // #if (TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
|
@@ -0,0 +1,212 @@
|
|
1
|
+
//
|
2
|
+
// ______ ______ ______
|
3
|
+
// /\ __ \ /\ ___\ /\ ___\
|
4
|
+
// \ \ __< \ \ __\_ \ \ __\_
|
5
|
+
// \ \_____\ \ \_____\ \ \_____\
|
6
|
+
// \/_____/ \/_____/ \/_____/
|
7
|
+
//
|
8
|
+
// Copyright (c) 2012 BEE creators
|
9
|
+
// http://www.whatsbug.com
|
10
|
+
//
|
11
|
+
// Permission is hereby granted, free of charge, to any person obtaining a
|
12
|
+
// copy of this software and associated documentation files (the "Software"),
|
13
|
+
// to deal in the Software without restriction, including without limitation
|
14
|
+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
15
|
+
// and/or sell copies of the Software, and to permit persons to whom the
|
16
|
+
// Software is furnished to do so, subject to the following conditions:
|
17
|
+
//
|
18
|
+
// The above copyright notice and this permission notice shall be included in
|
19
|
+
// all copies or substantial portions of the Software.
|
20
|
+
//
|
21
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
22
|
+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
23
|
+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
24
|
+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25
|
+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
26
|
+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
27
|
+
// IN THE SOFTWARE.
|
28
|
+
//
|
29
|
+
//
|
30
|
+
// Bee_UIBoard.h
|
31
|
+
//
|
32
|
+
|
33
|
+
#if (TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
|
34
|
+
|
35
|
+
#import "Bee_Precompile.h"
|
36
|
+
#import "Bee_UISignal.h"
|
37
|
+
#import "Bee_UILabel.h"
|
38
|
+
#import "Bee_UIStack.h"
|
39
|
+
|
40
|
+
#import "NSObject+BeeProperty.h"
|
41
|
+
|
42
|
+
#pragma mark -
|
43
|
+
|
44
|
+
@class BeeUIBoard;
|
45
|
+
@class BeeUIStack;
|
46
|
+
@class BeeUIStackGroup;
|
47
|
+
|
48
|
+
#pragma mark -
|
49
|
+
|
50
|
+
@interface UIView(BeeUIBoard)
|
51
|
+
- (BeeUIBoard *)board;
|
52
|
+
@end
|
53
|
+
|
54
|
+
typedef void (^BeeUIBoardBlock)( void );
|
55
|
+
|
56
|
+
#pragma mark -
|
57
|
+
|
58
|
+
@interface BeeUIBoard : UIViewController<UIGestureRecognizerDelegate, UIPopoverControllerDelegate>
|
59
|
+
{
|
60
|
+
NSTimeInterval _lastSleep;
|
61
|
+
NSTimeInterval _lastWeekup;
|
62
|
+
BeeUIBoard * _parentBoard;
|
63
|
+
|
64
|
+
BOOL _firstEnter;
|
65
|
+
BOOL _presenting;
|
66
|
+
BOOL _viewBuilt;
|
67
|
+
BOOL _dataLoaded;
|
68
|
+
NSInteger _state;
|
69
|
+
NSDate * _createDate;
|
70
|
+
|
71
|
+
BeeUIBoard * _modalBoard;
|
72
|
+
UIButton * _modalMaskView;
|
73
|
+
UIView * _modalContentView;
|
74
|
+
NSInteger _modalAnimationType;
|
75
|
+
NSInteger _stackAnimationType;
|
76
|
+
UIPopoverController * _containedPopover;
|
77
|
+
|
78
|
+
BOOL _allowedPortrait;
|
79
|
+
BOOL _allowedLandscape;
|
80
|
+
|
81
|
+
BOOL _zoomed;
|
82
|
+
CGRect _zoomRect;
|
83
|
+
BeeUIBoardBlock _animationBlock;
|
84
|
+
|
85
|
+
#if defined(__BEE_DEVELOPMENT__) && __BEE_DEVELOPMENT__
|
86
|
+
NSUInteger _createSeq;
|
87
|
+
NSUInteger _signalSeq;
|
88
|
+
NSMutableArray * _signals;
|
89
|
+
NSMutableArray * _callstack;
|
90
|
+
#endif // #if defined(__BEE_DEVELOPMENT__) && __BEE_DEVELOPMENT__
|
91
|
+
}
|
92
|
+
|
93
|
+
@property (nonatomic, assign) NSTimeInterval lastSleep;
|
94
|
+
@property (nonatomic, assign) NSTimeInterval lastWeekup;
|
95
|
+
@property (nonatomic, assign) BeeUIBoard * parentBoard;
|
96
|
+
|
97
|
+
@property (nonatomic, assign) BOOL firstEnter;
|
98
|
+
@property (nonatomic, assign) BOOL presenting;
|
99
|
+
@property (nonatomic, assign) BOOL viewBuilt;
|
100
|
+
@property (nonatomic, assign) BOOL dataLoaded;
|
101
|
+
@property (nonatomic, assign) NSInteger state;
|
102
|
+
@property (nonatomic, retain) NSDate * createDate;
|
103
|
+
|
104
|
+
@property (nonatomic, assign) UIPopoverController * containedPopover;
|
105
|
+
@property (nonatomic, assign) NSInteger stackAnimationType;
|
106
|
+
|
107
|
+
@property (nonatomic, retain) BeeUIBoard * modalBoard;
|
108
|
+
@property (nonatomic, retain) UIButton * modalMaskView;
|
109
|
+
@property (nonatomic, retain) UIView * modalContentView;
|
110
|
+
@property (nonatomic, assign) NSInteger modalAnimationType;
|
111
|
+
|
112
|
+
@property (nonatomic, readonly) BOOL deactivated;
|
113
|
+
@property (nonatomic, readonly) BOOL deactivating;
|
114
|
+
@property (nonatomic, readonly) BOOL activating;
|
115
|
+
@property (nonatomic, readonly) BOOL activated;
|
116
|
+
|
117
|
+
@property (nonatomic, readonly) NSTimeInterval sleepDuration;
|
118
|
+
@property (nonatomic, readonly) NSTimeInterval weekDuration;
|
119
|
+
@property (nonatomic, readonly) BeeUIStack * stack;
|
120
|
+
@property (nonatomic, readonly) BeeUIBoard * previousBoard;
|
121
|
+
@property (nonatomic, readonly) BeeUIBoard * nextBoard;
|
122
|
+
|
123
|
+
@property (nonatomic, assign) BOOL allowedPortrait;
|
124
|
+
@property (nonatomic, assign) BOOL allowedLandscape;
|
125
|
+
|
126
|
+
@property (nonatomic, assign) BOOL zoomed;
|
127
|
+
@property (nonatomic, assign) CGRect zoomRect;
|
128
|
+
@property (nonatomic, copy) BeeUIBoardBlock animationBlock;
|
129
|
+
|
130
|
+
#if defined(__BEE_DEVELOPMENT__) && __BEE_DEVELOPMENT__
|
131
|
+
@property (nonatomic, readonly) NSUInteger createSeq;
|
132
|
+
@property (nonatomic, readonly) NSUInteger signalSeq;
|
133
|
+
@property (nonatomic, readonly) NSMutableArray * signals;
|
134
|
+
@property (nonatomic, readonly) NSMutableArray * callstack;
|
135
|
+
#endif // #if defined(__BEE_DEVELOPMENT__) && __BEE_DEVELOPMENT__
|
136
|
+
|
137
|
+
AS_SIGNAL( CREATE_VIEWS ) // 创建视图
|
138
|
+
AS_SIGNAL( DELETE_VIEWS ) // 释放视图
|
139
|
+
AS_SIGNAL( LAYOUT_VIEWS ) // 布局视图
|
140
|
+
AS_SIGNAL( LOAD_DATAS ) // 加载数据
|
141
|
+
AS_SIGNAL( FREE_DATAS ) // 释放数据
|
142
|
+
AS_SIGNAL( WILL_APPEAR ) // 将要显示
|
143
|
+
AS_SIGNAL( DID_APPEAR ) // 已经显示
|
144
|
+
AS_SIGNAL( WILL_DISAPPEAR ) // 将要隐藏
|
145
|
+
AS_SIGNAL( DID_DISAPPEAR ) // 已经隐藏
|
146
|
+
AS_SIGNAL( ORIENTATION_CHANGED ) // 方向变化
|
147
|
+
|
148
|
+
AS_SIGNAL( ANIMATION_BEGIN ) // 动画开始
|
149
|
+
AS_SIGNAL( ANIMATION_FINISH ) // 动画结束
|
150
|
+
|
151
|
+
AS_SIGNAL( MODALVIEW_WILL_SHOW ) // ModalView将要显示
|
152
|
+
AS_SIGNAL( MODALVIEW_DID_SHOWN ) // ModalView已经显示
|
153
|
+
AS_SIGNAL( MODALVIEW_WILL_HIDE ) // ModalView将要隐藏
|
154
|
+
AS_SIGNAL( MODALVIEW_DID_HIDDEN ) // ModalView已经隐藏
|
155
|
+
|
156
|
+
AS_SIGNAL( POPOVER_WILL_PRESENT ) // Popover将要显示
|
157
|
+
AS_SIGNAL( POPOVER_DID_PRESENT ) // Popover已经显示
|
158
|
+
AS_SIGNAL( POPOVER_WILL_DISMISS ) // Popover将要隐藏
|
159
|
+
AS_SIGNAL( POPOVER_DID_DISMISSED ) // Popover已经隐藏
|
160
|
+
|
161
|
+
AS_INT( STATE_DEACTIVATED ) // 隐藏
|
162
|
+
AS_INT( STATE_DEACTIVATING ) // 将要隐藏
|
163
|
+
AS_INT( STATE_ACTIVATING ) // 将要显示
|
164
|
+
AS_INT( STATE_ACTIVATED ) // 显示
|
165
|
+
|
166
|
+
AS_INT( ANIMATION_TYPE_ALPHA ) // 渐隐动画
|
167
|
+
AS_INT( ANIMATION_TYPE_BOUNCE ) // 跳动动画
|
168
|
+
AS_INT( ANIMATION_TYPE_DEFAULT ) // 默认动画
|
169
|
+
|
170
|
+
AS_INT( BARBUTTON_LEFT ) // 左按钮
|
171
|
+
AS_INT( BARBUTTON_RIGHT ) // 右按钮
|
172
|
+
|
173
|
+
+ (NSArray *)allBoards;
|
174
|
+
+ (BeeUIBoard *)board;
|
175
|
+
+ (BeeUIBoard *)boardWithNibName:(NSString *)nibNameOrNil;
|
176
|
+
|
177
|
+
- (void)load;
|
178
|
+
- (void)unload;
|
179
|
+
|
180
|
+
- (void)presentModalView:(UIView *)view animated:(BOOL)animated;
|
181
|
+
- (void)presentModalView:(UIView *)view animated:(BOOL)animated animationType:(NSInteger)type;
|
182
|
+
- (void)dismissModalViewAnimated:(BOOL)animated;
|
183
|
+
|
184
|
+
- (void)presentPopoverForView:(UIView *)view
|
185
|
+
contentSize:(CGSize)size
|
186
|
+
direction:(UIPopoverArrowDirection)direction
|
187
|
+
animated:(BOOL)animated;
|
188
|
+
- (void)dismissPopoverAnimated:(BOOL)animated;
|
189
|
+
|
190
|
+
- (void)presentModalBoard:(BeeUIBoard *)board animated:(BOOL)animated;
|
191
|
+
- (void)dismissModalBoardAnimated:(BOOL)animated;
|
192
|
+
|
193
|
+
- (void)beginAnimation;
|
194
|
+
- (void)commitAnimation:(BeeUIBoardBlock)block;
|
195
|
+
|
196
|
+
- (void)changeAnimationCurve:(UIViewAnimationCurve)curve;
|
197
|
+
- (void)changeAnimationDuration:(NSTimeInterval)duration;
|
198
|
+
- (void)changeAnimationDelay:(NSTimeInterval)duration;
|
199
|
+
|
200
|
+
- (void)transformZoom:(CGRect)rect;
|
201
|
+
- (void)transformReset;
|
202
|
+
|
203
|
+
@end
|
204
|
+
|
205
|
+
#pragma mark -
|
206
|
+
|
207
|
+
@interface BeeUIBoard(InternalUseOnly)
|
208
|
+
- (void)__enterBackground;
|
209
|
+
- (void)__enterForeground;
|
210
|
+
@end
|
211
|
+
|
212
|
+
#endif // #if (TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
|