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,228 @@
|
|
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_Controller.h
|
31
|
+
//
|
32
|
+
|
33
|
+
#import "Bee_Precompile.h"
|
34
|
+
#import "Bee_Core.h"
|
35
|
+
#import "Bee_Message.h"
|
36
|
+
#import "Bee_MessageQueue.h"
|
37
|
+
#import "Bee_Controller.h"
|
38
|
+
|
39
|
+
#import "JSONKit.h"
|
40
|
+
#import <objc/runtime.h>
|
41
|
+
|
42
|
+
#pragma mark -
|
43
|
+
|
44
|
+
@implementation BeeController
|
45
|
+
|
46
|
+
static NSMutableArray * __subControllers = nil;
|
47
|
+
|
48
|
+
@synthesize prefix = _prefix;
|
49
|
+
@synthesize mapping = _mapping;
|
50
|
+
|
51
|
+
DEF_SINGLETON( BeeController );
|
52
|
+
|
53
|
+
+ (NSString *)MESSAGE
|
54
|
+
{
|
55
|
+
return [self MESSAGE];
|
56
|
+
}
|
57
|
+
|
58
|
+
+ (NSString *)MESSAGE_TYPE
|
59
|
+
{
|
60
|
+
return [NSString stringWithFormat:@"message.%@", [self description]];
|
61
|
+
}
|
62
|
+
|
63
|
+
+ (BeeController *)routes:(NSString *)message
|
64
|
+
{
|
65
|
+
BeeController * controller = nil;
|
66
|
+
|
67
|
+
if ( __subControllers.count )
|
68
|
+
{
|
69
|
+
for ( BeeController * subController in __subControllers )
|
70
|
+
{
|
71
|
+
if ( [message hasPrefix:subController.prefix] )
|
72
|
+
{
|
73
|
+
controller = subController;
|
74
|
+
break;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
if ( nil == controller )
|
80
|
+
{
|
81
|
+
NSArray * array = [message componentsSeparatedByString:@"."];
|
82
|
+
if ( array && array.count > 1 )
|
83
|
+
{
|
84
|
+
// NSString * prefix = (NSString *)[array objectAtIndex:0];
|
85
|
+
NSString * clazz = (NSString *)[array objectAtIndex:1];
|
86
|
+
|
87
|
+
Class rtti = NSClassFromString( clazz );
|
88
|
+
if ( rtti )
|
89
|
+
{
|
90
|
+
if ( class_respondsToSelector( rtti, @selector(sharedInstance) ) )
|
91
|
+
{
|
92
|
+
controller = [rtti sharedInstance];
|
93
|
+
}
|
94
|
+
else
|
95
|
+
{
|
96
|
+
controller = [[[rtti alloc] init] autorelease];
|
97
|
+
}
|
98
|
+
|
99
|
+
if ( controller )
|
100
|
+
{
|
101
|
+
NSAssert( [message hasPrefix:controller.prefix], @"wrong prefix" );
|
102
|
+
|
103
|
+
if ( NO == [__subControllers containsObject:controller] )
|
104
|
+
{
|
105
|
+
[__subControllers addObject:controller];
|
106
|
+
}
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
if ( nil == controller )
|
113
|
+
{
|
114
|
+
controller = [BeeController sharedInstance];
|
115
|
+
}
|
116
|
+
|
117
|
+
return controller;
|
118
|
+
}
|
119
|
+
|
120
|
+
+ (NSArray *)allControllers
|
121
|
+
{
|
122
|
+
return __subControllers;
|
123
|
+
}
|
124
|
+
|
125
|
+
#pragma mark -
|
126
|
+
|
127
|
+
- (id)init
|
128
|
+
{
|
129
|
+
self = [super init];
|
130
|
+
if ( self )
|
131
|
+
{
|
132
|
+
if ( nil == __subControllers )
|
133
|
+
{
|
134
|
+
__subControllers = [[NSMutableArray alloc] init];
|
135
|
+
}
|
136
|
+
|
137
|
+
self.mapping = [NSMutableDictionary dictionary];
|
138
|
+
self.prefix = [NSString stringWithFormat:@"message.%@", [[self class] description]];
|
139
|
+
|
140
|
+
[self load];
|
141
|
+
|
142
|
+
if ( NO == [__subControllers containsObject:self] )
|
143
|
+
{
|
144
|
+
[__subControllers addObject:self];
|
145
|
+
}
|
146
|
+
}
|
147
|
+
|
148
|
+
return self;
|
149
|
+
}
|
150
|
+
|
151
|
+
- (void)dealloc
|
152
|
+
{
|
153
|
+
if ( [__subControllers containsObject:self] )
|
154
|
+
{
|
155
|
+
[__subControllers removeObject:self];
|
156
|
+
}
|
157
|
+
|
158
|
+
[self unload];
|
159
|
+
|
160
|
+
self.mapping = nil;
|
161
|
+
self.prefix = nil;
|
162
|
+
|
163
|
+
[super dealloc];
|
164
|
+
}
|
165
|
+
|
166
|
+
- (void)load
|
167
|
+
{
|
168
|
+
}
|
169
|
+
|
170
|
+
- (void)unload
|
171
|
+
{
|
172
|
+
}
|
173
|
+
|
174
|
+
- (void)index:(BeeMessage *)msg
|
175
|
+
{
|
176
|
+
CC( @"unknown message '%@'", msg.message );
|
177
|
+
|
178
|
+
[msg setLastError:BeeMessage.ERROR_CODE_ROUTES
|
179
|
+
domain:BeeMessage.ERROR_DOMAIN_UNKNOWN
|
180
|
+
desc:@"No routes"];
|
181
|
+
}
|
182
|
+
|
183
|
+
- (void)route:(BeeMessage *)msg
|
184
|
+
{
|
185
|
+
NSArray * array = [_mapping objectForKey:msg.message];
|
186
|
+
if ( array && [array count] )
|
187
|
+
{
|
188
|
+
id target = [array objectAtIndex:0];
|
189
|
+
SEL action = (SEL)[[array objectAtIndex:1] unsignedIntValue];
|
190
|
+
|
191
|
+
[target performSelector:action withObject:msg];
|
192
|
+
// [target performSelectorInBackground:action withObject:msg];
|
193
|
+
}
|
194
|
+
else
|
195
|
+
{
|
196
|
+
NSArray * parts = [msg.message componentsSeparatedByString:@"."];
|
197
|
+
if ( parts && parts.count )
|
198
|
+
{
|
199
|
+
NSString * methodName = parts.lastObject;
|
200
|
+
if ( methodName && methodName.length )
|
201
|
+
{
|
202
|
+
NSString * selectorName = [methodName stringByAppendingString:@":"];
|
203
|
+
SEL selector = NSSelectorFromString(selectorName);
|
204
|
+
|
205
|
+
if ( [self respondsToSelector:selector] )
|
206
|
+
{
|
207
|
+
[self performSelector:selector withObject:msg];
|
208
|
+
return;
|
209
|
+
}
|
210
|
+
}
|
211
|
+
}
|
212
|
+
|
213
|
+
[self index:msg];
|
214
|
+
}
|
215
|
+
}
|
216
|
+
|
217
|
+
- (void)map:(NSString *)name action:(SEL)action
|
218
|
+
{
|
219
|
+
[self map:name action:action target:self];
|
220
|
+
}
|
221
|
+
|
222
|
+
- (void)map:(NSString *)name action:(SEL)action target:(id)target
|
223
|
+
{
|
224
|
+
NSArray * array = [NSArray arrayWithObjects:target, [NSNumber numberWithUnsignedInt:(NSUInteger)action], nil];
|
225
|
+
[_mapping setObject:array forKey:name];
|
226
|
+
}
|
227
|
+
|
228
|
+
@end
|
@@ -0,0 +1,209 @@
|
|
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_Message.h
|
31
|
+
//
|
32
|
+
|
33
|
+
#import "Bee_Precompile.h"
|
34
|
+
#import "Bee_Singleton.h"
|
35
|
+
#import "Bee_Network.h"
|
36
|
+
|
37
|
+
#pragma mark -
|
38
|
+
|
39
|
+
#define AS_MESSAGE( __name ) AS_STATIC_PROPERTY( __name )
|
40
|
+
#define DEF_MESSAGE( __name ) DEF_STATIC_PROPERTY3( __name, @"message", [self description] )
|
41
|
+
|
42
|
+
#pragma mark -
|
43
|
+
|
44
|
+
@class BeeMessage;
|
45
|
+
|
46
|
+
typedef void (^BeeMessageBlock)( BeeMessage * msg );
|
47
|
+
typedef BeeMessage * (^BeeMessageBlockV)( void );
|
48
|
+
typedef BeeMessage * (^BeeMessageBlockN)( id key, ... );
|
49
|
+
typedef BeeMessage * (^BeeMessageBlockT)( NSTimeInterval time );
|
50
|
+
typedef id (^BeeMessageObjectBlockN)( id key, ... );
|
51
|
+
|
52
|
+
#pragma mark -
|
53
|
+
|
54
|
+
@protocol BeeMessageExecutor<NSObject>
|
55
|
+
- (void)index:(BeeMessage *)msg;
|
56
|
+
- (void)route:(BeeMessage *)msg;
|
57
|
+
@end
|
58
|
+
|
59
|
+
#pragma mark -
|
60
|
+
|
61
|
+
@interface BeeMessage : NSObject
|
62
|
+
{
|
63
|
+
BOOL _unique; // 同时只能执行一个该同名消息
|
64
|
+
BOOL _disabled; // 不回调
|
65
|
+
BOOL _async; // 所有操作均为异步(暂时不支持)
|
66
|
+
BOOL _timeout; // 是否为超时?
|
67
|
+
BOOL _cached; // 是否为缓存
|
68
|
+
BOOL _emitted; // 已被发送
|
69
|
+
BOOL _oneDirection; // 单向消息,Controller收到即算成功
|
70
|
+
NSTimer * _timer; // 计时器,消息可以单独设置超时
|
71
|
+
NSTimeInterval _seconds; // 超时时长(秒)
|
72
|
+
BOOL _useCache; // 是否使用Cache
|
73
|
+
BOOL _arrived; // 是否达到
|
74
|
+
|
75
|
+
BOOL _toldProgress; // 是否告知进度
|
76
|
+
BOOL _progressed; // 是否有新进度
|
77
|
+
|
78
|
+
NSInteger _nextState; // 消息状态(下一状态)
|
79
|
+
NSInteger _state; // 消息状态
|
80
|
+
NSString * _message; // 消息名字,格式: @"xxx.yyy"
|
81
|
+
NSMutableDictionary * _input; // 输入参数字典
|
82
|
+
NSMutableDictionary * _output; // 输出数据字典
|
83
|
+
id _responder; // 回调对象
|
84
|
+
id<BeeMessageExecutor> _executer; // 所负责处理该消息的Controller
|
85
|
+
|
86
|
+
NSString * _errorDomain; // 错误域
|
87
|
+
NSInteger _errorCode; // 错误码
|
88
|
+
NSString * _errorDesc; // 错误描述
|
89
|
+
|
90
|
+
NSTimeInterval _initTimeStamp;
|
91
|
+
NSTimeInterval _sendTimeStamp;
|
92
|
+
NSTimeInterval _recvTimeStamp;
|
93
|
+
|
94
|
+
BeeMessageBlock _whenUpdate;
|
95
|
+
|
96
|
+
#if defined(__BEE_DEVELOPMENT__) && __BEE_DEVELOPMENT__
|
97
|
+
NSMutableArray * _callstack;
|
98
|
+
#endif // #if defined(__BEE_DEVELOPMENT__) && __BEE_DEVELOPMENT__
|
99
|
+
}
|
100
|
+
|
101
|
+
AS_STRING( ERROR_DOMAIN_UNKNOWN )
|
102
|
+
AS_STRING( ERROR_DOMAIN_SERVER )
|
103
|
+
AS_STRING( ERROR_DOMAIN_CLIENT )
|
104
|
+
AS_STRING( ERROR_DOMAIN_NETWORK )
|
105
|
+
|
106
|
+
AS_INT( ERROR_CODE_OK ) // OK
|
107
|
+
AS_INT( ERROR_CODE_UNKNOWN ) // 非知错误
|
108
|
+
AS_INT( ERROR_CODE_TIMEOUT ) // 超时
|
109
|
+
AS_INT( ERROR_CODE_PARAMS ) // 参数错误
|
110
|
+
AS_INT( ERROR_CODE_ROUTES ) // 路由错误
|
111
|
+
|
112
|
+
AS_INT( STATE_CREATED ) // 消息被创建
|
113
|
+
AS_INT( STATE_SENDING ) // 消息正在发送
|
114
|
+
AS_INT( STATE_WAITING ) // 消息正在等待回应
|
115
|
+
AS_INT( STATE_SUCCEED ) // 消息处理成功(本地或网络)
|
116
|
+
AS_INT( STATE_FAILED ) // 消息处理失败(本地或网络)
|
117
|
+
AS_INT( STATE_CANCELLED ) // 消息被取消了
|
118
|
+
|
119
|
+
@property (nonatomic, readonly) BeeMessageBlockN INPUT;
|
120
|
+
@property (nonatomic, readonly) BeeMessageBlockN OUTPUT;
|
121
|
+
@property (nonatomic, readonly) BeeMessageObjectBlockN GET_INPUT;
|
122
|
+
@property (nonatomic, readonly) BeeMessageObjectBlockN GET_OUTPUT;
|
123
|
+
@property (nonatomic, readonly) BeeMessageBlockT TIMEOUT;
|
124
|
+
@property (nonatomic, readonly) BeeMessageBlockV TOLD_PROGRESS;
|
125
|
+
|
126
|
+
@property (nonatomic, assign) BOOL unique; // 是否同时只能发一个
|
127
|
+
@property (nonatomic, assign) BOOL disabled; // 是否被禁止回调
|
128
|
+
@property (nonatomic, assign) BOOL async; // 是否异步
|
129
|
+
@property (nonatomic, assign) BOOL timeout; // 是否超时了
|
130
|
+
@property (nonatomic, assign) BOOL cached; // 是否从缓存读取的
|
131
|
+
@property (nonatomic, assign) BOOL emitted; // 是否被发送了
|
132
|
+
@property (nonatomic, assign) BOOL oneDirection; // 是否单方向发送
|
133
|
+
@property (nonatomic, assign) NSTimeInterval seconds; // 超时时间
|
134
|
+
@property (nonatomic, assign) BOOL useCache;
|
135
|
+
|
136
|
+
@property (nonatomic, assign) BOOL toldProgress;
|
137
|
+
@property (nonatomic, assign) BOOL progressed;
|
138
|
+
|
139
|
+
@property (nonatomic, assign) id responder;
|
140
|
+
@property (nonatomic, assign) NSInteger nextState;
|
141
|
+
@property (nonatomic, assign) NSInteger state;
|
142
|
+
@property (nonatomic, retain) NSString * message;
|
143
|
+
@property (nonatomic, retain) NSMutableDictionary * input;
|
144
|
+
@property (nonatomic, retain) NSMutableDictionary * output;
|
145
|
+
@property (nonatomic, assign) id<BeeMessageExecutor> executer;
|
146
|
+
|
147
|
+
@property (nonatomic, retain) NSString * errorDomain;
|
148
|
+
@property (nonatomic, assign) NSInteger errorCode;
|
149
|
+
@property (nonatomic, retain) NSString * errorDesc;
|
150
|
+
|
151
|
+
@property (nonatomic, assign) NSTimeInterval initTimeStamp;
|
152
|
+
@property (nonatomic, assign) NSTimeInterval sendTimeStamp;
|
153
|
+
@property (nonatomic, assign) NSTimeInterval recvTimeStamp;
|
154
|
+
|
155
|
+
@property (nonatomic, copy) BeeMessageBlock whenUpdate;
|
156
|
+
|
157
|
+
#if defined(__BEE_DEVELOPMENT__) && __BEE_DEVELOPMENT__
|
158
|
+
@property (nonatomic, readonly) NSMutableArray * callstack;
|
159
|
+
#endif // #if defined(__BEE_DEVELOPMENT__) && __BEE_DEVELOPMENT__
|
160
|
+
|
161
|
+
@property (nonatomic, assign) BOOL created;
|
162
|
+
@property (nonatomic, assign) BOOL arrived;
|
163
|
+
@property (nonatomic, assign) BOOL sending;
|
164
|
+
@property (nonatomic, assign) BOOL waiting;
|
165
|
+
@property (nonatomic, assign) BOOL succeed;
|
166
|
+
@property (nonatomic, assign) BOOL failed;
|
167
|
+
@property (nonatomic, assign) BOOL cancelled;
|
168
|
+
|
169
|
+
@property (nonatomic, readonly) NSTimeInterval timeElapsed; // 整体经过时间
|
170
|
+
@property (nonatomic, readonly) NSTimeInterval timeCostPending; // 排队等待耗时
|
171
|
+
@property (nonatomic, readonly) NSTimeInterval timeCostOverAir; // 网络处理耗时
|
172
|
+
|
173
|
+
+ (BeeMessage *)message;
|
174
|
+
+ (BeeMessage *)message:(NSString *)msg;
|
175
|
+
+ (BeeMessage *)message:(NSString *)msg timeoutSeconds:(NSUInteger)seconds;
|
176
|
+
+ (BeeMessage *)message:(NSString *)msg responder:(id)responder;
|
177
|
+
+ (BeeMessage *)message:(NSString *)msg responder:(id)responder timeoutSeconds:(NSUInteger)seconds;
|
178
|
+
|
179
|
+
- (BeeMessage *)send;
|
180
|
+
- (BeeMessage *)input:(id)first, ...;
|
181
|
+
- (BeeMessage *)output:(id)first, ...;
|
182
|
+
- (BeeMessage *)cancel;
|
183
|
+
- (BeeMessage *)reset;
|
184
|
+
|
185
|
+
- (BOOL)is:(NSString *)name;
|
186
|
+
- (BOOL)isKindOf:(NSString *)prefix;
|
187
|
+
- (BOOL)isTwinWith:(BeeMessage *)msg; // 与某消息同属于一个发起源,相同NAME
|
188
|
+
|
189
|
+
- (void)setLastError;
|
190
|
+
- (void)setLastError:(NSInteger)code;
|
191
|
+
- (void)setLastError:(NSInteger)code domain:(NSString *)domain;
|
192
|
+
- (void)setLastError:(NSInteger)code domain:(NSString *)domain desc:(NSString *)desc;
|
193
|
+
|
194
|
+
- (void)runloop;
|
195
|
+
- (void)changeState:(NSInteger)newState;
|
196
|
+
|
197
|
+
- (void)callResponder;
|
198
|
+
- (void)forwardResponder:(NSObject *)obj;
|
199
|
+
|
200
|
+
// internal use only
|
201
|
+
- (void)internalStartTimer;
|
202
|
+
- (void)internalStopTimer;
|
203
|
+
- (void)internalNotifySending;
|
204
|
+
- (void)internalNotifySucceed;
|
205
|
+
- (void)internalNotifyFailed;
|
206
|
+
- (void)internalNotifyCancelled;
|
207
|
+
- (void)internalNotifyProgressUpdated;
|
208
|
+
|
209
|
+
@end
|