rhoconnect-client 5.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +9 -0
- data/CREDITS +0 -0
- data/LICENSE +9 -0
- data/README.md +47 -0
- data/ext/rhoconnect-client/RhoConnectClient.rb +190 -0
- data/ext/rhoconnect-client/ext/RhoConnectClient.xml +726 -0
- data/ext/rhoconnect-client/ext/build +26 -0
- data/ext/rhoconnect-client/ext/build.bat +30 -0
- data/ext/rhoconnect-client/ext/platform/android/ext_java.files +1 -0
- data/ext/rhoconnect-client/ext/platform/android/ext_native.files +14 -0
- data/ext/rhoconnect-client/ext/platform/android/src/com/rhoconnectclient/RhoconnectClient.java +1 -0
- data/ext/rhoconnect-client/ext/platform/iphone/.gitignore +1 -0
- data/ext/rhoconnect-client/ext/platform/iphone/Rakefile +74 -0
- data/ext/rhoconnect-client/ext/platform/iphone/RhoconnectClient.xcodeproj/project.pbxproj +390 -0
- data/ext/rhoconnect-client/ext/platform/iphone/RhoconnectClient_Prefix.pch +7 -0
- data/ext/rhoconnect-client/ext/platform/iphone/impl/readme.txt +7 -0
- data/ext/rhoconnect-client/ext/platform/qt/Rakefile +35 -0
- data/ext/rhoconnect-client/ext/platform/qt/rhoconnect-client.pro +88 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.sln +36 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.vcproj +774 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.vsprops +15 -0
- data/ext/rhoconnect-client/ext/platform/wm/src/rhoconnectclient_wm.cpp +40 -0
- data/ext/rhoconnect-client/ext/platform/wm/src/rhoconnectclient_wm.h +2 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.props +22 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.sln +32 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.vcxproj +220 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.vcxproj.filters +103 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientImpl.cpp +273 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientImpl.h +60 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientSingletonImpl.h +53 -0
- data/ext/rhoconnect-client/ext/shared/initRhoconnectClient.cpp +207 -0
- data/ext/rhoconnect-client/ext/shared/rhoconnectclient.c +18 -0
- data/ext/rhoconnect-client/ext/shared/sync/ClientRegister.cpp +398 -0
- data/ext/rhoconnect-client/ext/shared/sync/ClientRegister.h +147 -0
- data/ext/rhoconnect-client/ext/shared/sync/ISyncProtocol.h +91 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncEngine.cpp +1245 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncEngine.h +213 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncNotify.cpp +737 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncNotify.h +209 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncProtocol_3.h +220 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncProtocol_4.h +259 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncSource.cpp +1694 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncSource.h +212 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncThread.cpp +583 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncThread.h +250 -0
- data/ext/rhoconnect-client/ext.yml +12 -0
- data/lib/build/run_rhoconnect_spec.rb +135 -0
- data/lib/rhoconnect-client.rb +3 -0
- data/platform/shared/RhoConnectClient/RhoConnectClient.cpp +1673 -0
- data/platform/shared/RhoConnectClient/RhoConnectClient.h +181 -0
- data/platform/shared/RhoConnectClient/RhoError.h +77 -0
- data/rhoconnect-client/C++/Tests/RhoConnectClientTest.cpp +830 -0
- data/rhoconnect-client/C++/Tests/win32/.gitignore +3 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClient.sln +65 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClient.vcproj +634 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClientTest/RhoConnectClientTest.vcproj +222 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClientTest/stdafx.h +65 -0
- data/rhoconnect-client/C++/Tests/win32/stdafx.h +65 -0
- data/rhoconnect-client/CHANGELOG +18 -0
- data/rhoconnect-client/Java/Android/build/android.rake +387 -0
- data/rhoconnect-client/Java/Android/build/android_sdk.rb +582 -0
- data/rhoconnect-client/Java/Android/build/libcurl_build.files +73 -0
- data/rhoconnect-client/Java/Android/build/libjson_build.files +9 -0
- data/rhoconnect-client/Java/Android/build/librhocommon_build.files +14 -0
- data/rhoconnect-client/Java/Android/build/librhodb_build.files +5 -0
- data/rhoconnect-client/Java/Android/build/librhoimpl_build.files +13 -0
- data/rhoconnect-client/Java/Android/build/librholog_build.files +4 -0
- data/rhoconnect-client/Java/Android/build/libsqlite_build.files +1 -0
- data/rhoconnect-client/Java/Android/build/libsync_build.files +7 -0
- data/rhoconnect-client/Java/Android/build/libunzip_build.files +1 -0
- data/rhoconnect-client/Java/Android/build/rhoconnectclient_build.files +3 -0
- data/rhoconnect-client/Java/Android/build/rhoimpljava_build.files +21 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/Capabilities.java +63 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/MemoryInfoCollector.java +79 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/util/ContextFactory.java +63 -0
- data/rhoconnect-client/Java/Android/test/.classpath +9 -0
- data/rhoconnect-client/Java/Android/test/.project +33 -0
- data/rhoconnect-client/Java/Android/test/AndroidManifest.xml +14 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/androidtest.png +0 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Java/Android/test/assets/rho.dat +9 -0
- data/rhoconnect-client/Java/Android/test/proguard.cfg +36 -0
- data/rhoconnect-client/Java/Android/test/project.properties +11 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-hdpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-ldpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-mdpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/layout/main.xml +12 -0
- data/rhoconnect-client/Java/Android/test/res/values/strings.xml +5 -0
- data/rhoconnect-client/Java/Android/test/rhoimpl.jar +0 -0
- data/rhoconnect-client/Java/Android/test/src/com/rhomobile/rhoconnect_client_test/TestRhoConnectClient.java +343 -0
- data/rhoconnect-client/Java/Android/test/src/com/rhomobile/rhoconnect_client_test/TestRhoConnectClientBlobs.java +219 -0
- data/rhoconnect-client/Java/RhoConnect/.classpath +6 -0
- data/rhoconnect-client/Java/RhoConnect/.project +93 -0
- data/rhoconnect-client/Java/RhoConnect/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Java/RhoConnect/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Java/RhoConnect/assets/rho.dat +8 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/RhoConnectJniNotify.h +61 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectClient.h +181 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectNotify.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectNotify_IDelegate.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectObjectNotify.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectObjectNotify_IDelegate.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhomModel.h +103 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/rhojava.inc +76 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniClient.cpp +401 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniModel.cpp +332 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniNotify.cpp +223 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectUtil.cpp +82 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhodesApp.cpp +114 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectClient.java +108 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectNotify.java +78 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectObjectNotify.java +71 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhomModel.java +195 -0
- data/rhoconnect-client/JavaScript/.classpath +10 -0
- data/rhoconnect-client/JavaScript/.gitignore +4 -0
- data/rhoconnect-client/JavaScript/.project +17 -0
- data/rhoconnect-client/JavaScript/README.textile +1 -0
- data/rhoconnect-client/JavaScript/build.xml +185 -0
- data/rhoconnect-client/JavaScript/doc/fsm-sample.js +44 -0
- data/rhoconnect-client/JavaScript/doc/fsm-sample.png +0 -0
- data/rhoconnect-client/JavaScript/src/RhoSyncJS.gwt.xml +21 -0
- data/rhoconnect-client/JavaScript/stubs/RhoSyncStubsJS.gwt.xml +21 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Capabilities.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/IRhoRubyHelper.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Mutex.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoAppAdapter.java +39 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoClassFactory.java +29 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoConf.java +100 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoEmptyLogger.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoEmptyProfiler.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoLogger.java +32 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoProfiler.java +27 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhodesApp.java +25 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/TimeInterval.java +22 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Tokenizer.java +23 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBAdapter.java +174 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBAttrManager.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBException.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/IDBResult.java +27 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/file/IFileAccess.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/file/SimpleFile.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/IHttpConnection.java +22 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/NetRequest.java +324 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/NetResponse.java +51 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/URI.java +64 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/ClientRegister.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONArrayIterator.java +37 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONEntry.java +48 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONStructIterator.java +41 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/SyncNotify.java +98 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/SyncThread.java +92 -0
- data/rhoconnect-client/JavaScript/war/WEB-INF/lib/gwt-servlet-deps.jar +0 -0
- data/rhoconnect-client/JavaScript/war/WEB-INF/lib/gwt-servlet.jar +0 -0
- data/rhoconnect-client/JavaScript/war/js/fsm-sample.js +54 -0
- data/rhoconnect-client/JavaScript/war/js/rhosync-api.js +237 -0
- data/rhoconnect-client/JavaScript/war/js/rhosync-fsm.js +307 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/4C71D69C9BBC9E6F05C6BA49B01BCBC1.cache.html +3122 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/5146F4FFF34511C8BB2661E920B49E3A.cache.html +3254 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/5248C67481D9D27AD0703D15CDBD2A1C.cache.html +3147 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/EE1DC2692C9C32367B53A39E2358AF23.cache.html +3195 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/clear.cache.gif +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/corner.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/corner_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/hborder.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/hborder_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/corner_dialog_topleft.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/corner_dialog_topright.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/hborder_blue_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/hborder_gray_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/vborder_blue_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/vborder_gray_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/splitPanelThumb.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/vborder.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/vborder_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/standard.css +1144 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/standard_rtl.css +1145 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/hosted.html +350 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/rhosyncjs.nocache.js +314 -0
- data/rhoconnect-client/JavaScript/war/test/SpecRunner.html +35 -0
- data/rhoconnect-client/JavaScript/war/test/dbtest.html +38 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/MIT.LICENSE +20 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine-html.js +188 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine.css +166 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine.js +2421 -0
- data/rhoconnect-client/JavaScript/war/test/spec/SpecHelper.js +7 -0
- data/rhoconnect-client/JavaScript/war/test/spec/SyncApiSpec.js +573 -0
- data/rhoconnect-client/JavaScript/war/test/spec/samples/PlayerSpec.js +58 -0
- data/rhoconnect-client/JavaScript/war/test/worker-test.js +17 -0
- data/rhoconnect-client/LICENSE +41 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.h +118 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.m +641 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.xcodeproj/project.pbxproj +1434 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectNotify.h +83 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectNotify.m +181 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectObjectNotify.h +65 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectObjectNotify.m +73 -0
- data/rhoconnect-client/ObjectiveC/RhomModel.h +101 -0
- data/rhoconnect-client/ObjectiveC/RhomModel.m +320 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/MainWindow.xib +198 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest-Info.plist +30 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest.xcodeproj/project.pbxproj +373 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTestAppDelegate.h +58 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTestAppDelegate.m +84 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest_Prefix.pch +8 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/invalid_import_db.zip +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/main.m +1096 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/test.png +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/test2.png +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/valid_import_db.zip +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsAppDelegate.h +62 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsAppDelegate.m +35 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsViewController.h +78 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsViewController.m +549 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/MainWindow.xib +227 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/main.m +17 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests-Info.plist +30 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests.xcodeproj/project.pbxproj +363 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptestsViewController.xib +641 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests_Prefix.pch +8 -0
- data/rhoconnect-client/README.textile +23 -0
- data/rhoconnect-client/Rakefile +20 -0
- data/rhoconnect-client/Samples/Java/android_store/.classpath +8 -0
- data/rhoconnect-client/Samples/Java/android_store/.project +33 -0
- data/rhoconnect-client/Samples/Java/android_store/AndroidManifest.xml +24 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/rho.dat +8 -0
- data/rhoconnect-client/Samples/Java/android_store/default.properties +11 -0
- data/rhoconnect-client/Samples/Java/android_store/project.properties +14 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-hdpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-ldpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-mdpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/layout/main.xml +12 -0
- data/rhoconnect-client/Samples/Java/android_store/res/values/strings.xml +5 -0
- data/rhoconnect-client/Samples/Java/android_store/rhoimpl.jar +0 -0
- data/rhoconnect-client/Samples/Java/android_store/src/com/rhomobile/android_store/StoreActivity.java +68 -0
- data/rhoconnect-client/Samples/Java/android_store/src/com/rhomobile/android_store/StoreApplication.java +15 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/LoginViewController.h +70 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/LoginViewController.m +94 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RhoConnectEngine.h +82 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RhoConnectEngine.m +119 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RootViewController.h +63 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RootViewController.m +314 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/WaitLoginController.h +65 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/WaitLoginController.m +110 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/storeAppDelegate.h +61 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/storeAppDelegate.m +171 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/LoginViewController.xib +779 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/MainWindow.xib +580 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/RootViewController.xib +384 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/WaitLoginController.xib +557 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/icon.png +0 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/main.m +22 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store-Info.plist +30 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store.xcodeproj/project.pbxproj +367 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store_Prefix.pch +14 -0
- data/rhoconnect-client/build.yml +3 -0
- data/rhoconnect-client/version +1 -0
- metadata +314 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/*------------------------------------------------------------------------
|
|
2
|
+
* (The MIT License)
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2008-2011 Rhomobile, Inc.
|
|
5
|
+
*
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in
|
|
14
|
+
* all copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
* THE SOFTWARE.
|
|
23
|
+
*
|
|
24
|
+
* http://rhomobile.com
|
|
25
|
+
|
|
26
|
+
* Copyright (c) 2011-2016 Symbol Technologies, Inc.
|
|
27
|
+
*
|
|
28
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
29
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
30
|
+
* in the Software without restriction, including without limitation the rights
|
|
31
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
32
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
33
|
+
* furnished to do so, subject to the following conditions:
|
|
34
|
+
*
|
|
35
|
+
* The above copyright notice and this permission notice shall be included in
|
|
36
|
+
* all copies or substantial portions of the Software.
|
|
37
|
+
*
|
|
38
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
39
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
40
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
41
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
42
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
43
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
44
|
+
* THE SOFTWARE.
|
|
45
|
+
*
|
|
46
|
+
* http://symbol.com
|
|
47
|
+
*------------------------------------------------------------------------*/
|
|
48
|
+
|
|
49
|
+
#import <UIKit/UIKit.h>
|
|
50
|
+
#import "RootViewController.h"
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
@interface WaitLoginController : UIViewController {
|
|
54
|
+
IBOutlet UILabel* lblMessage;
|
|
55
|
+
IBOutlet UIActivityIndicatorView *indicator;
|
|
56
|
+
IBOutlet RootViewController *homePage;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@property (nonatomic, retain) IBOutlet UILabel *lblMessage;
|
|
60
|
+
@property (nonatomic, retain) IBOutlet UIActivityIndicatorView *indicator;
|
|
61
|
+
@property (nonatomic, retain) IBOutlet RootViewController* homePage;
|
|
62
|
+
|
|
63
|
+
- (void)loginComplete:(NSString*) errorMessage;
|
|
64
|
+
|
|
65
|
+
@end
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
//
|
|
2
|
+
// WaitLoginController.m
|
|
3
|
+
// store
|
|
4
|
+
//
|
|
5
|
+
// Created by Vlad on 8/30/10.
|
|
6
|
+
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
#import "RhoConnectEngine.h"
|
|
10
|
+
#import "WaitLoginController.h"
|
|
11
|
+
|
|
12
|
+
@implementation WaitLoginController
|
|
13
|
+
|
|
14
|
+
@synthesize lblMessage, indicator, homePage;
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
- (void)syncAllComplete:(RhoConnectNotify*) notify
|
|
18
|
+
{
|
|
19
|
+
NSLog(@"sync_type: \"%@\"", notify.sync_type);
|
|
20
|
+
NSLog(@"bulk_status: \"%@\"", notify.bulk_status);
|
|
21
|
+
NSLog(@"partition: \"%@\"", notify.partition);
|
|
22
|
+
if ( [notify.status compare:@"in_progress"] == 0)
|
|
23
|
+
{
|
|
24
|
+
}else if ([notify.status compare:@"complete"] == 0)
|
|
25
|
+
{
|
|
26
|
+
[[self navigationController] pushViewController:homePage animated:YES];
|
|
27
|
+
[ [RhoConnectEngine sharedInstance].syncClient clearNotification];
|
|
28
|
+
}else if ([notify.status compare:@"error"] == 0)
|
|
29
|
+
{
|
|
30
|
+
if([notify.error_message caseInsensitiveCompare:@"unknown client"] == 0)
|
|
31
|
+
{
|
|
32
|
+
[[RhoConnectEngine sharedInstance].syncClient database_client_reset];
|
|
33
|
+
[[RhoConnectEngine sharedInstance].syncClient setNotification: @selector(syncAllComplete:) target:self];
|
|
34
|
+
//[RhoConnectEngine sharedInstance].syncClient.bulksync_state = 0;
|
|
35
|
+
[[RhoConnectEngine sharedInstance].syncClient syncAll];
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
- (void)loginComplete:(NSString*) errorMessage
|
|
41
|
+
{
|
|
42
|
+
NSLog(@"Login error message: \"%@\"", errorMessage);
|
|
43
|
+
[indicator stopAnimating];
|
|
44
|
+
if ([RhoConnectEngine sharedInstance].loginState == logged_in)
|
|
45
|
+
{
|
|
46
|
+
[ [RhoConnectEngine sharedInstance].syncClient setNotification: @selector(syncAllComplete:) target:self];
|
|
47
|
+
//[RhoConnectEngine sharedInstance].syncClient.bulksync_state = 0;
|
|
48
|
+
[ [RhoConnectEngine sharedInstance].syncClient syncAll];
|
|
49
|
+
} else {
|
|
50
|
+
lblMessage.text = errorMessage;
|
|
51
|
+
self.navigationItem.hidesBackButton = false;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
- (void)viewDidAppear:(BOOL)animated {
|
|
56
|
+
self.navigationItem.title = @"Wait";
|
|
57
|
+
if ([RhoConnectEngine sharedInstance].loginState == in_progress) {
|
|
58
|
+
[indicator startAnimating];
|
|
59
|
+
lblMessage.text = @"Working";
|
|
60
|
+
self.navigationItem.hidesBackButton = true;
|
|
61
|
+
} else {
|
|
62
|
+
[indicator stopAnimating];
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/*
|
|
67
|
+
// The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
|
|
68
|
+
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
|
|
69
|
+
if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
|
|
70
|
+
// Custom initialization
|
|
71
|
+
}
|
|
72
|
+
return self;
|
|
73
|
+
}
|
|
74
|
+
*/
|
|
75
|
+
|
|
76
|
+
/*
|
|
77
|
+
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
|
|
78
|
+
- (void)viewDidLoad {
|
|
79
|
+
[super viewDidLoad];
|
|
80
|
+
}
|
|
81
|
+
*/
|
|
82
|
+
|
|
83
|
+
/*
|
|
84
|
+
// Override to allow orientations other than the default portrait orientation.
|
|
85
|
+
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
|
|
86
|
+
// Return YES for supported orientations
|
|
87
|
+
return (interfaceOrientation == UIInterfaceOrientationPortrait);
|
|
88
|
+
}
|
|
89
|
+
*/
|
|
90
|
+
|
|
91
|
+
- (void)didReceiveMemoryWarning {
|
|
92
|
+
// Releases the view if it doesn't have a superview.
|
|
93
|
+
[super didReceiveMemoryWarning];
|
|
94
|
+
|
|
95
|
+
// Release any cached data, images, etc that aren't in use.
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
- (void)viewDidUnload {
|
|
99
|
+
[super viewDidUnload];
|
|
100
|
+
// Release any retained subviews of the main view.
|
|
101
|
+
// e.g. self.myOutlet = nil;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
- (void)dealloc {
|
|
106
|
+
[super dealloc];
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
@end
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/*------------------------------------------------------------------------
|
|
2
|
+
* (The MIT License)
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2008-2011 Rhomobile, Inc.
|
|
5
|
+
*
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in
|
|
14
|
+
* all copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
* THE SOFTWARE.
|
|
23
|
+
*
|
|
24
|
+
* http://rhomobile.com
|
|
25
|
+
|
|
26
|
+
* Copyright (c) 2011-2016 Symbol Technologies, Inc.
|
|
27
|
+
*
|
|
28
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
29
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
30
|
+
* in the Software without restriction, including without limitation the rights
|
|
31
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
32
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
33
|
+
* furnished to do so, subject to the following conditions:
|
|
34
|
+
*
|
|
35
|
+
* The above copyright notice and this permission notice shall be included in
|
|
36
|
+
* all copies or substantial portions of the Software.
|
|
37
|
+
*
|
|
38
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
39
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
40
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
41
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
42
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
43
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
44
|
+
* THE SOFTWARE.
|
|
45
|
+
*
|
|
46
|
+
* http://symbol.com
|
|
47
|
+
*------------------------------------------------------------------------*/
|
|
48
|
+
|
|
49
|
+
#import <UIKit/UIKit.h>
|
|
50
|
+
|
|
51
|
+
@interface storeAppDelegate : NSObject <UIApplicationDelegate> {
|
|
52
|
+
|
|
53
|
+
UIWindow *window;
|
|
54
|
+
UINavigationController *navigationController;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
58
|
+
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
|
|
59
|
+
|
|
60
|
+
@end
|
|
61
|
+
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
//
|
|
2
|
+
// storeAppDelegate.m
|
|
3
|
+
// store
|
|
4
|
+
//
|
|
5
|
+
// Created by Vlad on 8/30/10.
|
|
6
|
+
// Copyright __MyCompanyName__ 2010. All rights reserved.
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
#import "storeAppDelegate.h"
|
|
10
|
+
#import "RootViewController.h"
|
|
11
|
+
#import "RhoConnectEngine.h"
|
|
12
|
+
|
|
13
|
+
@implementation storeAppDelegate
|
|
14
|
+
|
|
15
|
+
@synthesize window;
|
|
16
|
+
@synthesize navigationController;
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
#pragma mark -
|
|
20
|
+
#pragma mark Application lifecycle
|
|
21
|
+
|
|
22
|
+
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
23
|
+
|
|
24
|
+
// Override point for customization after application launch.
|
|
25
|
+
|
|
26
|
+
// Add the navigation controller's view to the window and display.
|
|
27
|
+
[window addSubview:navigationController.view];
|
|
28
|
+
[window makeKeyAndVisible];
|
|
29
|
+
|
|
30
|
+
return YES;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
- (void)applicationWillResignActive:(UIApplication *)application {
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
- (void)applicationDidBecomeActive:(UIApplication *)application {
|
|
44
|
+
/*
|
|
45
|
+
Restart any tasks that were paused (or not yet started) while the application was inactive.
|
|
46
|
+
*/
|
|
47
|
+
if([RhoConnectEngine sharedInstance].syncClient)
|
|
48
|
+
{
|
|
49
|
+
if([[RhoConnectEngine sharedInstance].syncClient is_syncing])
|
|
50
|
+
{
|
|
51
|
+
[[RhoConnectEngine sharedInstance].syncClient stop_sync];
|
|
52
|
+
}
|
|
53
|
+
if([RhoConnectEngine sharedInstance].syncClient.threaded_mode == FALSE)
|
|
54
|
+
{
|
|
55
|
+
[RhoConnectEngine sharedInstance].syncClient.threaded_mode = TRUE;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
- (void)applicationDidEnterBackground:(UIApplication *)app
|
|
61
|
+
{
|
|
62
|
+
//Check if our iOS version supports multitasking I.E iOS 4
|
|
63
|
+
if ([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)]) {
|
|
64
|
+
if ([[UIDevice currentDevice] isMultitaskingSupported]) { //Check if device supports mulitasking
|
|
65
|
+
UIApplication *application = [UIApplication sharedApplication]; //Get the shared application instance
|
|
66
|
+
|
|
67
|
+
__block UIBackgroundTaskIdentifier background_task; //Create a task object
|
|
68
|
+
|
|
69
|
+
background_task = [application beginBackgroundTaskWithExpirationHandler: ^ {
|
|
70
|
+
NSLog(@"$$$ Background task is terminated by System !!!");
|
|
71
|
+
[application endBackgroundTask: background_task]; //Tell the system that we are done with the tasks
|
|
72
|
+
background_task = UIBackgroundTaskInvalid; //Set the task to be invalid
|
|
73
|
+
|
|
74
|
+
//System will be shutting down the app at any point in time now
|
|
75
|
+
}];
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
79
|
+
|
|
80
|
+
NSLog(@"Background task started");
|
|
81
|
+
//Perform your tasks that your application requires
|
|
82
|
+
|
|
83
|
+
[RhoConnectEngine sharedInstance].syncClient.poll_interval = 0;
|
|
84
|
+
if([[RhoConnectEngine sharedInstance].syncClient is_syncing])
|
|
85
|
+
{
|
|
86
|
+
[[RhoConnectEngine sharedInstance].syncClient stop_sync];
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
[RhoConnectEngine sharedInstance].syncClient.threaded_mode = FALSE;
|
|
90
|
+
|
|
91
|
+
RhoConnectNotify* notify = [[RhoConnectEngine sharedInstance].syncClient syncAll];
|
|
92
|
+
|
|
93
|
+
NSLog(@"Background task syncAll finished");
|
|
94
|
+
|
|
95
|
+
NSString* status = notify.status;
|
|
96
|
+
NSString* error = notify.error_message;
|
|
97
|
+
int err_code = notify.error_code;
|
|
98
|
+
NSString* source = notify.source_name;
|
|
99
|
+
|
|
100
|
+
NSLog(@"syncAll NOTIFY, source: '%s', status: '%s' , total_count: %d, processed_count: %d, cumulative_count: %d, error_msg: '%s' , error_code: %d, callback_params: '%s'",
|
|
101
|
+
[source cStringUsingEncoding:NSUTF8StringEncoding],
|
|
102
|
+
[status cStringUsingEncoding: NSUTF8StringEncoding],
|
|
103
|
+
notify.total_count,
|
|
104
|
+
notify.processed_count,
|
|
105
|
+
notify.cumulative_count,
|
|
106
|
+
[error cStringUsingEncoding: NSUTF8StringEncoding],
|
|
107
|
+
err_code,
|
|
108
|
+
[notify.callback_params cStringUsingEncoding:NSUTF8StringEncoding]
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
[application endBackgroundTask: background_task]; //End the task so the system knows that you are done with what you need to perform
|
|
112
|
+
background_task = UIBackgroundTaskInvalid; //Invalidate the background_task
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
- (void)applicationWillEnterForeground:(UIApplication *)application {
|
|
140
|
+
/*
|
|
141
|
+
Called as part of transition from the background to the inactive state: here you can undo many of the changes made on entering the background.
|
|
142
|
+
*/
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
- (void)applicationWillTerminate:(UIApplication *)application
|
|
148
|
+
{
|
|
149
|
+
[RhoConnectEngine destroy];
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
#pragma mark -
|
|
154
|
+
#pragma mark Memory management
|
|
155
|
+
|
|
156
|
+
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application {
|
|
157
|
+
/*
|
|
158
|
+
Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) later.
|
|
159
|
+
*/
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
- (void)dealloc {
|
|
164
|
+
[navigationController release];
|
|
165
|
+
[window release];
|
|
166
|
+
[super dealloc];
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
@end
|
|
171
|
+
|
|
@@ -0,0 +1,779 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
|
|
3
|
+
<data>
|
|
4
|
+
<int key="IBDocument.SystemTarget">1024</int>
|
|
5
|
+
<string key="IBDocument.SystemVersion">10F569</string>
|
|
6
|
+
<string key="IBDocument.InterfaceBuilderVersion">788</string>
|
|
7
|
+
<string key="IBDocument.AppKitVersion">1038.29</string>
|
|
8
|
+
<string key="IBDocument.HIToolboxVersion">461.00</string>
|
|
9
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
|
10
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
11
|
+
<string key="NS.object.0">117</string>
|
|
12
|
+
</object>
|
|
13
|
+
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
|
|
14
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
15
|
+
<integer value="1"/>
|
|
16
|
+
<integer value="14"/>
|
|
17
|
+
<integer value="12"/>
|
|
18
|
+
</object>
|
|
19
|
+
<object class="NSArray" key="IBDocument.PluginDependencies">
|
|
20
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
21
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
22
|
+
</object>
|
|
23
|
+
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
|
24
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
25
|
+
<object class="NSArray" key="dict.sortedKeys" id="0">
|
|
26
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
27
|
+
</object>
|
|
28
|
+
<object class="NSMutableArray" key="dict.values">
|
|
29
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
30
|
+
</object>
|
|
31
|
+
</object>
|
|
32
|
+
<object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
|
33
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
34
|
+
<object class="IBProxyObject" id="372490531">
|
|
35
|
+
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
|
36
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
37
|
+
</object>
|
|
38
|
+
<object class="IBProxyObject" id="975951072">
|
|
39
|
+
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
|
40
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
41
|
+
</object>
|
|
42
|
+
<object class="IBUIView" id="191373211">
|
|
43
|
+
<reference key="NSNextResponder"/>
|
|
44
|
+
<int key="NSvFlags">274</int>
|
|
45
|
+
<object class="NSMutableArray" key="NSSubviews">
|
|
46
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
47
|
+
<object class="IBUILabel" id="451409414">
|
|
48
|
+
<reference key="NSNextResponder" ref="191373211"/>
|
|
49
|
+
<int key="NSvFlags">292</int>
|
|
50
|
+
<string key="NSFrame">{{20, 20}, {47, 21}}</string>
|
|
51
|
+
<reference key="NSSuperview" ref="191373211"/>
|
|
52
|
+
<bool key="IBUIOpaque">NO</bool>
|
|
53
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
|
54
|
+
<int key="IBUIContentMode">7</int>
|
|
55
|
+
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
|
56
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
57
|
+
<string key="IBUIText">Login:</string>
|
|
58
|
+
<object class="NSColor" key="IBUITextColor" id="592626308">
|
|
59
|
+
<int key="NSColorSpace">1</int>
|
|
60
|
+
<bytes key="NSRGB">MCAwIDAAA</bytes>
|
|
61
|
+
</object>
|
|
62
|
+
<nil key="IBUIHighlightedColor"/>
|
|
63
|
+
<int key="IBUIBaselineAdjustment">1</int>
|
|
64
|
+
<float key="IBUIMinimumFontSize">10</float>
|
|
65
|
+
</object>
|
|
66
|
+
<object class="IBUITextField" id="28274900">
|
|
67
|
+
<reference key="NSNextResponder" ref="191373211"/>
|
|
68
|
+
<int key="NSvFlags">292</int>
|
|
69
|
+
<string key="NSFrame">{{113, 17}, {187, 31}}</string>
|
|
70
|
+
<reference key="NSSuperview" ref="191373211"/>
|
|
71
|
+
<bool key="IBUIOpaque">NO</bool>
|
|
72
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
|
73
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
74
|
+
<int key="IBUIContentVerticalAlignment">0</int>
|
|
75
|
+
<string key="IBUIText"/>
|
|
76
|
+
<int key="IBUIBorderStyle">3</int>
|
|
77
|
+
<object class="NSColor" key="IBUITextColor">
|
|
78
|
+
<int key="NSColorSpace">3</int>
|
|
79
|
+
<bytes key="NSWhite">MAA</bytes>
|
|
80
|
+
<object class="NSColorSpace" key="NSCustomColorSpace" id="895681210">
|
|
81
|
+
<int key="NSID">2</int>
|
|
82
|
+
</object>
|
|
83
|
+
</object>
|
|
84
|
+
<bool key="IBUIAdjustsFontSizeToFit">YES</bool>
|
|
85
|
+
<float key="IBUIMinimumFontSize">17</float>
|
|
86
|
+
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
|
87
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
88
|
+
</object>
|
|
89
|
+
</object>
|
|
90
|
+
<object class="IBUILabel" id="715461943">
|
|
91
|
+
<reference key="NSNextResponder" ref="191373211"/>
|
|
92
|
+
<int key="NSvFlags">292</int>
|
|
93
|
+
<string key="NSFrame">{{20, 61}, {80, 21}}</string>
|
|
94
|
+
<reference key="NSSuperview" ref="191373211"/>
|
|
95
|
+
<bool key="IBUIOpaque">NO</bool>
|
|
96
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
|
97
|
+
<int key="IBUIContentMode">7</int>
|
|
98
|
+
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
|
99
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
100
|
+
<string key="IBUIText">Password:</string>
|
|
101
|
+
<reference key="IBUITextColor" ref="592626308"/>
|
|
102
|
+
<nil key="IBUIHighlightedColor"/>
|
|
103
|
+
<int key="IBUIBaselineAdjustment">1</int>
|
|
104
|
+
<float key="IBUIMinimumFontSize">10</float>
|
|
105
|
+
</object>
|
|
106
|
+
<object class="IBUITextField" id="224210576">
|
|
107
|
+
<reference key="NSNextResponder" ref="191373211"/>
|
|
108
|
+
<int key="NSvFlags">292</int>
|
|
109
|
+
<string key="NSFrame">{{113, 58}, {187, 31}}</string>
|
|
110
|
+
<reference key="NSSuperview" ref="191373211"/>
|
|
111
|
+
<bool key="IBUIOpaque">NO</bool>
|
|
112
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
|
113
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
114
|
+
<int key="IBUIContentVerticalAlignment">0</int>
|
|
115
|
+
<string key="IBUIText"/>
|
|
116
|
+
<int key="IBUIBorderStyle">3</int>
|
|
117
|
+
<object class="NSColor" key="IBUITextColor">
|
|
118
|
+
<int key="NSColorSpace">3</int>
|
|
119
|
+
<bytes key="NSWhite">MAA</bytes>
|
|
120
|
+
<reference key="NSCustomColorSpace" ref="895681210"/>
|
|
121
|
+
</object>
|
|
122
|
+
<bool key="IBUIAdjustsFontSizeToFit">YES</bool>
|
|
123
|
+
<float key="IBUIMinimumFontSize">17</float>
|
|
124
|
+
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
|
125
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
126
|
+
</object>
|
|
127
|
+
</object>
|
|
128
|
+
<object class="IBUIButton" id="561145754">
|
|
129
|
+
<reference key="NSNextResponder" ref="191373211"/>
|
|
130
|
+
<int key="NSvFlags">292</int>
|
|
131
|
+
<string key="NSFrame">{{113, 97}, {187, 37}}</string>
|
|
132
|
+
<reference key="NSSuperview" ref="191373211"/>
|
|
133
|
+
<bool key="IBUIOpaque">NO</bool>
|
|
134
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
135
|
+
<int key="IBUIContentHorizontalAlignment">0</int>
|
|
136
|
+
<int key="IBUIContentVerticalAlignment">0</int>
|
|
137
|
+
<object class="NSFont" key="IBUIFont">
|
|
138
|
+
<string key="NSName">Helvetica-Bold</string>
|
|
139
|
+
<double key="NSSize">15</double>
|
|
140
|
+
<int key="NSfFlags">16</int>
|
|
141
|
+
</object>
|
|
142
|
+
<int key="IBUIButtonType">1</int>
|
|
143
|
+
<string key="IBUINormalTitle">Login</string>
|
|
144
|
+
<object class="NSColor" key="IBUIHighlightedTitleColor" id="1072494856">
|
|
145
|
+
<int key="NSColorSpace">3</int>
|
|
146
|
+
<bytes key="NSWhite">MQA</bytes>
|
|
147
|
+
</object>
|
|
148
|
+
<object class="NSColor" key="IBUINormalTitleColor">
|
|
149
|
+
<int key="NSColorSpace">1</int>
|
|
150
|
+
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
|
151
|
+
</object>
|
|
152
|
+
<object class="NSColor" key="IBUINormalTitleShadowColor">
|
|
153
|
+
<int key="NSColorSpace">3</int>
|
|
154
|
+
<bytes key="NSWhite">MC41AA</bytes>
|
|
155
|
+
</object>
|
|
156
|
+
</object>
|
|
157
|
+
</object>
|
|
158
|
+
<string key="NSFrameSize">{320, 460}</string>
|
|
159
|
+
<reference key="NSSuperview"/>
|
|
160
|
+
<object class="NSColor" key="IBUIBackgroundColor">
|
|
161
|
+
<int key="NSColorSpace">3</int>
|
|
162
|
+
<bytes key="NSWhite">MQA</bytes>
|
|
163
|
+
<reference key="NSCustomColorSpace" ref="895681210"/>
|
|
164
|
+
</object>
|
|
165
|
+
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
|
166
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
167
|
+
</object>
|
|
168
|
+
<object class="IBUIViewController" id="560174987">
|
|
169
|
+
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
|
170
|
+
<object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
|
|
171
|
+
<int key="interfaceOrientation">1</int>
|
|
172
|
+
</object>
|
|
173
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
174
|
+
<bool key="IBUIHorizontal">NO</bool>
|
|
175
|
+
</object>
|
|
176
|
+
<object class="IBUITableViewController" id="622519077">
|
|
177
|
+
<object class="IBUITableView" key="IBUIView" id="985161653">
|
|
178
|
+
<reference key="NSNextResponder"/>
|
|
179
|
+
<int key="NSvFlags">274</int>
|
|
180
|
+
<string key="NSFrameSize">{320, 460}</string>
|
|
181
|
+
<reference key="NSSuperview"/>
|
|
182
|
+
<reference key="IBUIBackgroundColor" ref="1072494856"/>
|
|
183
|
+
<bool key="IBUIOpaque">NO</bool>
|
|
184
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
|
185
|
+
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
|
|
186
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
187
|
+
<bool key="IBUIAlwaysBounceVertical">YES</bool>
|
|
188
|
+
<int key="IBUISeparatorStyle">1</int>
|
|
189
|
+
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
|
190
|
+
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
|
191
|
+
<float key="IBUIRowHeight">44</float>
|
|
192
|
+
<float key="IBUISectionHeaderHeight">22</float>
|
|
193
|
+
<float key="IBUISectionFooterHeight">22</float>
|
|
194
|
+
</object>
|
|
195
|
+
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
|
196
|
+
<object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
|
|
197
|
+
<int key="interfaceOrientation">1</int>
|
|
198
|
+
</object>
|
|
199
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
200
|
+
<bool key="IBUIHorizontal">NO</bool>
|
|
201
|
+
</object>
|
|
202
|
+
</object>
|
|
203
|
+
<object class="IBObjectContainer" key="IBDocument.Objects">
|
|
204
|
+
<object class="NSMutableArray" key="connectionRecords">
|
|
205
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
206
|
+
<object class="IBConnectionRecord">
|
|
207
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
208
|
+
<string key="label">view</string>
|
|
209
|
+
<reference key="source" ref="372490531"/>
|
|
210
|
+
<reference key="destination" ref="191373211"/>
|
|
211
|
+
</object>
|
|
212
|
+
<int key="connectionID">3</int>
|
|
213
|
+
</object>
|
|
214
|
+
<object class="IBConnectionRecord">
|
|
215
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
216
|
+
<string key="label">txtLogin</string>
|
|
217
|
+
<reference key="source" ref="372490531"/>
|
|
218
|
+
<reference key="destination" ref="28274900"/>
|
|
219
|
+
</object>
|
|
220
|
+
<int key="connectionID">9</int>
|
|
221
|
+
</object>
|
|
222
|
+
<object class="IBConnectionRecord">
|
|
223
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
224
|
+
<string key="label">txtPassword</string>
|
|
225
|
+
<reference key="source" ref="372490531"/>
|
|
226
|
+
<reference key="destination" ref="224210576"/>
|
|
227
|
+
</object>
|
|
228
|
+
<int key="connectionID">10</int>
|
|
229
|
+
</object>
|
|
230
|
+
<object class="IBConnectionRecord">
|
|
231
|
+
<object class="IBCocoaTouchEventConnection" key="connection">
|
|
232
|
+
<string key="label">doLogin:</string>
|
|
233
|
+
<reference key="source" ref="561145754"/>
|
|
234
|
+
<reference key="destination" ref="372490531"/>
|
|
235
|
+
<int key="IBEventType">7</int>
|
|
236
|
+
</object>
|
|
237
|
+
<int key="connectionID">11</int>
|
|
238
|
+
</object>
|
|
239
|
+
<object class="IBConnectionRecord">
|
|
240
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
241
|
+
<string key="label">waitPage</string>
|
|
242
|
+
<reference key="source" ref="372490531"/>
|
|
243
|
+
<reference key="destination" ref="560174987"/>
|
|
244
|
+
</object>
|
|
245
|
+
<int key="connectionID">13</int>
|
|
246
|
+
</object>
|
|
247
|
+
<object class="IBConnectionRecord">
|
|
248
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
249
|
+
<string key="label">delegate</string>
|
|
250
|
+
<reference key="source" ref="985161653"/>
|
|
251
|
+
<reference key="destination" ref="622519077"/>
|
|
252
|
+
</object>
|
|
253
|
+
<int key="connectionID">16</int>
|
|
254
|
+
</object>
|
|
255
|
+
<object class="IBConnectionRecord">
|
|
256
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
257
|
+
<string key="label">dataSource</string>
|
|
258
|
+
<reference key="source" ref="985161653"/>
|
|
259
|
+
<reference key="destination" ref="622519077"/>
|
|
260
|
+
</object>
|
|
261
|
+
<int key="connectionID">17</int>
|
|
262
|
+
</object>
|
|
263
|
+
<object class="IBConnectionRecord">
|
|
264
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
265
|
+
<string key="label">indexPage</string>
|
|
266
|
+
<reference key="source" ref="372490531"/>
|
|
267
|
+
<reference key="destination" ref="622519077"/>
|
|
268
|
+
</object>
|
|
269
|
+
<int key="connectionID">18</int>
|
|
270
|
+
</object>
|
|
271
|
+
</object>
|
|
272
|
+
<object class="IBMutableOrderedSet" key="objectRecords">
|
|
273
|
+
<object class="NSArray" key="orderedObjects">
|
|
274
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
275
|
+
<object class="IBObjectRecord">
|
|
276
|
+
<int key="objectID">0</int>
|
|
277
|
+
<reference key="object" ref="0"/>
|
|
278
|
+
<reference key="children" ref="1000"/>
|
|
279
|
+
<nil key="parent"/>
|
|
280
|
+
</object>
|
|
281
|
+
<object class="IBObjectRecord">
|
|
282
|
+
<int key="objectID">1</int>
|
|
283
|
+
<reference key="object" ref="191373211"/>
|
|
284
|
+
<object class="NSMutableArray" key="children">
|
|
285
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
286
|
+
<reference ref="28274900"/>
|
|
287
|
+
<reference ref="224210576"/>
|
|
288
|
+
<reference ref="715461943"/>
|
|
289
|
+
<reference ref="451409414"/>
|
|
290
|
+
<reference ref="561145754"/>
|
|
291
|
+
</object>
|
|
292
|
+
<reference key="parent" ref="0"/>
|
|
293
|
+
</object>
|
|
294
|
+
<object class="IBObjectRecord">
|
|
295
|
+
<int key="objectID">-1</int>
|
|
296
|
+
<reference key="object" ref="372490531"/>
|
|
297
|
+
<reference key="parent" ref="0"/>
|
|
298
|
+
<string key="objectName">File's Owner</string>
|
|
299
|
+
</object>
|
|
300
|
+
<object class="IBObjectRecord">
|
|
301
|
+
<int key="objectID">-2</int>
|
|
302
|
+
<reference key="object" ref="975951072"/>
|
|
303
|
+
<reference key="parent" ref="0"/>
|
|
304
|
+
</object>
|
|
305
|
+
<object class="IBObjectRecord">
|
|
306
|
+
<int key="objectID">4</int>
|
|
307
|
+
<reference key="object" ref="451409414"/>
|
|
308
|
+
<reference key="parent" ref="191373211"/>
|
|
309
|
+
</object>
|
|
310
|
+
<object class="IBObjectRecord">
|
|
311
|
+
<int key="objectID">5</int>
|
|
312
|
+
<reference key="object" ref="28274900"/>
|
|
313
|
+
<reference key="parent" ref="191373211"/>
|
|
314
|
+
<string key="objectName">txtLogin</string>
|
|
315
|
+
</object>
|
|
316
|
+
<object class="IBObjectRecord">
|
|
317
|
+
<int key="objectID">6</int>
|
|
318
|
+
<reference key="object" ref="715461943"/>
|
|
319
|
+
<reference key="parent" ref="191373211"/>
|
|
320
|
+
</object>
|
|
321
|
+
<object class="IBObjectRecord">
|
|
322
|
+
<int key="objectID">7</int>
|
|
323
|
+
<reference key="object" ref="224210576"/>
|
|
324
|
+
<reference key="parent" ref="191373211"/>
|
|
325
|
+
<string key="objectName">txtPassword</string>
|
|
326
|
+
</object>
|
|
327
|
+
<object class="IBObjectRecord">
|
|
328
|
+
<int key="objectID">8</int>
|
|
329
|
+
<reference key="object" ref="561145754"/>
|
|
330
|
+
<reference key="parent" ref="191373211"/>
|
|
331
|
+
</object>
|
|
332
|
+
<object class="IBObjectRecord">
|
|
333
|
+
<int key="objectID">12</int>
|
|
334
|
+
<reference key="object" ref="560174987"/>
|
|
335
|
+
<reference key="parent" ref="0"/>
|
|
336
|
+
</object>
|
|
337
|
+
<object class="IBObjectRecord">
|
|
338
|
+
<int key="objectID">14</int>
|
|
339
|
+
<reference key="object" ref="622519077"/>
|
|
340
|
+
<object class="NSMutableArray" key="children">
|
|
341
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
342
|
+
<reference ref="985161653"/>
|
|
343
|
+
</object>
|
|
344
|
+
<reference key="parent" ref="0"/>
|
|
345
|
+
</object>
|
|
346
|
+
<object class="IBObjectRecord">
|
|
347
|
+
<int key="objectID">15</int>
|
|
348
|
+
<reference key="object" ref="985161653"/>
|
|
349
|
+
<reference key="parent" ref="622519077"/>
|
|
350
|
+
</object>
|
|
351
|
+
</object>
|
|
352
|
+
</object>
|
|
353
|
+
<object class="NSMutableDictionary" key="flattenedProperties">
|
|
354
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
355
|
+
<object class="NSArray" key="dict.sortedKeys">
|
|
356
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
357
|
+
<string>-1.CustomClassName</string>
|
|
358
|
+
<string>-2.CustomClassName</string>
|
|
359
|
+
<string>1.IBEditorWindowLastContentRect</string>
|
|
360
|
+
<string>1.IBPluginDependency</string>
|
|
361
|
+
<string>12.CustomClassName</string>
|
|
362
|
+
<string>12.IBEditorWindowLastContentRect</string>
|
|
363
|
+
<string>12.IBPluginDependency</string>
|
|
364
|
+
<string>14.CustomClassName</string>
|
|
365
|
+
<string>14.IBEditorWindowLastContentRect</string>
|
|
366
|
+
<string>14.IBPluginDependency</string>
|
|
367
|
+
<string>15.IBPluginDependency</string>
|
|
368
|
+
<string>4.IBPluginDependency</string>
|
|
369
|
+
<string>5.IBPluginDependency</string>
|
|
370
|
+
<string>6.IBPluginDependency</string>
|
|
371
|
+
<string>7.IBPluginDependency</string>
|
|
372
|
+
<string>8.IBPluginDependency</string>
|
|
373
|
+
</object>
|
|
374
|
+
<object class="NSMutableArray" key="dict.values">
|
|
375
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
376
|
+
<string>LoginViewController</string>
|
|
377
|
+
<string>UIResponder</string>
|
|
378
|
+
<string>{{558, 270}, {320, 480}}</string>
|
|
379
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
380
|
+
<string>WaitLoginController</string>
|
|
381
|
+
<string>{{42, 353}, {320, 480}}</string>
|
|
382
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
383
|
+
<string>RootViewController</string>
|
|
384
|
+
<string>{{0, 365}, {320, 480}}</string>
|
|
385
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
386
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
387
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
388
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
389
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
390
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
391
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
392
|
+
</object>
|
|
393
|
+
</object>
|
|
394
|
+
<object class="NSMutableDictionary" key="unlocalizedProperties">
|
|
395
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
396
|
+
<reference key="dict.sortedKeys" ref="0"/>
|
|
397
|
+
<object class="NSMutableArray" key="dict.values">
|
|
398
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
399
|
+
</object>
|
|
400
|
+
</object>
|
|
401
|
+
<nil key="activeLocalization"/>
|
|
402
|
+
<object class="NSMutableDictionary" key="localizations">
|
|
403
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
404
|
+
<reference key="dict.sortedKeys" ref="0"/>
|
|
405
|
+
<object class="NSMutableArray" key="dict.values">
|
|
406
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
407
|
+
</object>
|
|
408
|
+
</object>
|
|
409
|
+
<nil key="sourceID"/>
|
|
410
|
+
<int key="maxID">18</int>
|
|
411
|
+
</object>
|
|
412
|
+
<object class="IBClassDescriber" key="IBDocument.Classes">
|
|
413
|
+
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
|
|
414
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
415
|
+
<object class="IBPartialClassDescription">
|
|
416
|
+
<string key="className">LoginViewController</string>
|
|
417
|
+
<string key="superclassName">UIViewController</string>
|
|
418
|
+
<object class="NSMutableDictionary" key="actions">
|
|
419
|
+
<string key="NS.key.0">doLogin:</string>
|
|
420
|
+
<string key="NS.object.0">id</string>
|
|
421
|
+
</object>
|
|
422
|
+
<object class="NSMutableDictionary" key="actionInfosByName">
|
|
423
|
+
<string key="NS.key.0">doLogin:</string>
|
|
424
|
+
<object class="IBActionInfo" key="NS.object.0">
|
|
425
|
+
<string key="name">doLogin:</string>
|
|
426
|
+
<string key="candidateClassName">id</string>
|
|
427
|
+
</object>
|
|
428
|
+
</object>
|
|
429
|
+
<object class="NSMutableDictionary" key="outlets">
|
|
430
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
431
|
+
<object class="NSArray" key="dict.sortedKeys">
|
|
432
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
433
|
+
<string>indexPage</string>
|
|
434
|
+
<string>txtLogin</string>
|
|
435
|
+
<string>txtPassword</string>
|
|
436
|
+
<string>waitPage</string>
|
|
437
|
+
</object>
|
|
438
|
+
<object class="NSMutableArray" key="dict.values">
|
|
439
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
440
|
+
<string>RootViewController</string>
|
|
441
|
+
<string>UITextField</string>
|
|
442
|
+
<string>UITextField</string>
|
|
443
|
+
<string>WaitLoginController</string>
|
|
444
|
+
</object>
|
|
445
|
+
</object>
|
|
446
|
+
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
|
447
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
448
|
+
<object class="NSArray" key="dict.sortedKeys">
|
|
449
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
450
|
+
<string>indexPage</string>
|
|
451
|
+
<string>txtLogin</string>
|
|
452
|
+
<string>txtPassword</string>
|
|
453
|
+
<string>waitPage</string>
|
|
454
|
+
</object>
|
|
455
|
+
<object class="NSMutableArray" key="dict.values">
|
|
456
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
457
|
+
<object class="IBToOneOutletInfo">
|
|
458
|
+
<string key="name">indexPage</string>
|
|
459
|
+
<string key="candidateClassName">RootViewController</string>
|
|
460
|
+
</object>
|
|
461
|
+
<object class="IBToOneOutletInfo">
|
|
462
|
+
<string key="name">txtLogin</string>
|
|
463
|
+
<string key="candidateClassName">UITextField</string>
|
|
464
|
+
</object>
|
|
465
|
+
<object class="IBToOneOutletInfo">
|
|
466
|
+
<string key="name">txtPassword</string>
|
|
467
|
+
<string key="candidateClassName">UITextField</string>
|
|
468
|
+
</object>
|
|
469
|
+
<object class="IBToOneOutletInfo">
|
|
470
|
+
<string key="name">waitPage</string>
|
|
471
|
+
<string key="candidateClassName">WaitLoginController</string>
|
|
472
|
+
</object>
|
|
473
|
+
</object>
|
|
474
|
+
</object>
|
|
475
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
476
|
+
<string key="majorKey">IBProjectSource</string>
|
|
477
|
+
<string key="minorKey">Classes/LoginViewController.h</string>
|
|
478
|
+
</object>
|
|
479
|
+
</object>
|
|
480
|
+
<object class="IBPartialClassDescription">
|
|
481
|
+
<string key="className">RootViewController</string>
|
|
482
|
+
<string key="superclassName">UITableViewController</string>
|
|
483
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
484
|
+
<string key="majorKey">IBProjectSource</string>
|
|
485
|
+
<string key="minorKey">Classes/RootViewController.h</string>
|
|
486
|
+
</object>
|
|
487
|
+
</object>
|
|
488
|
+
<object class="IBPartialClassDescription">
|
|
489
|
+
<string key="className">WaitLoginController</string>
|
|
490
|
+
<string key="superclassName">UIViewController</string>
|
|
491
|
+
<object class="NSMutableDictionary" key="outlets">
|
|
492
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
493
|
+
<object class="NSArray" key="dict.sortedKeys">
|
|
494
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
495
|
+
<string>homePage</string>
|
|
496
|
+
<string>indicator</string>
|
|
497
|
+
<string>lblMessage</string>
|
|
498
|
+
</object>
|
|
499
|
+
<object class="NSMutableArray" key="dict.values">
|
|
500
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
501
|
+
<string>RootViewController</string>
|
|
502
|
+
<string>UIActivityIndicatorView</string>
|
|
503
|
+
<string>UILabel</string>
|
|
504
|
+
</object>
|
|
505
|
+
</object>
|
|
506
|
+
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
|
507
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
508
|
+
<object class="NSArray" key="dict.sortedKeys">
|
|
509
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
510
|
+
<string>homePage</string>
|
|
511
|
+
<string>indicator</string>
|
|
512
|
+
<string>lblMessage</string>
|
|
513
|
+
</object>
|
|
514
|
+
<object class="NSMutableArray" key="dict.values">
|
|
515
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
516
|
+
<object class="IBToOneOutletInfo">
|
|
517
|
+
<string key="name">homePage</string>
|
|
518
|
+
<string key="candidateClassName">RootViewController</string>
|
|
519
|
+
</object>
|
|
520
|
+
<object class="IBToOneOutletInfo">
|
|
521
|
+
<string key="name">indicator</string>
|
|
522
|
+
<string key="candidateClassName">UIActivityIndicatorView</string>
|
|
523
|
+
</object>
|
|
524
|
+
<object class="IBToOneOutletInfo">
|
|
525
|
+
<string key="name">lblMessage</string>
|
|
526
|
+
<string key="candidateClassName">UILabel</string>
|
|
527
|
+
</object>
|
|
528
|
+
</object>
|
|
529
|
+
</object>
|
|
530
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
531
|
+
<string key="majorKey">IBProjectSource</string>
|
|
532
|
+
<string key="minorKey">Classes/WaitLoginController.h</string>
|
|
533
|
+
</object>
|
|
534
|
+
</object>
|
|
535
|
+
</object>
|
|
536
|
+
<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
|
537
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
|
538
|
+
<object class="IBPartialClassDescription">
|
|
539
|
+
<string key="className">NSObject</string>
|
|
540
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
541
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
542
|
+
<string key="minorKey">Foundation.framework/Headers/NSError.h</string>
|
|
543
|
+
</object>
|
|
544
|
+
</object>
|
|
545
|
+
<object class="IBPartialClassDescription">
|
|
546
|
+
<string key="className">NSObject</string>
|
|
547
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
548
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
549
|
+
<string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
|
|
550
|
+
</object>
|
|
551
|
+
</object>
|
|
552
|
+
<object class="IBPartialClassDescription">
|
|
553
|
+
<string key="className">NSObject</string>
|
|
554
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
555
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
556
|
+
<string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
|
|
557
|
+
</object>
|
|
558
|
+
</object>
|
|
559
|
+
<object class="IBPartialClassDescription">
|
|
560
|
+
<string key="className">NSObject</string>
|
|
561
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
562
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
563
|
+
<string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
|
|
564
|
+
</object>
|
|
565
|
+
</object>
|
|
566
|
+
<object class="IBPartialClassDescription">
|
|
567
|
+
<string key="className">NSObject</string>
|
|
568
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
569
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
570
|
+
<string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
|
|
571
|
+
</object>
|
|
572
|
+
</object>
|
|
573
|
+
<object class="IBPartialClassDescription">
|
|
574
|
+
<string key="className">NSObject</string>
|
|
575
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
576
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
577
|
+
<string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
|
|
578
|
+
</object>
|
|
579
|
+
</object>
|
|
580
|
+
<object class="IBPartialClassDescription">
|
|
581
|
+
<string key="className">NSObject</string>
|
|
582
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
583
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
584
|
+
<string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
|
|
585
|
+
</object>
|
|
586
|
+
</object>
|
|
587
|
+
<object class="IBPartialClassDescription">
|
|
588
|
+
<string key="className">NSObject</string>
|
|
589
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
590
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
591
|
+
<string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
|
|
592
|
+
</object>
|
|
593
|
+
</object>
|
|
594
|
+
<object class="IBPartialClassDescription">
|
|
595
|
+
<string key="className">NSObject</string>
|
|
596
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
597
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
598
|
+
<string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
|
|
599
|
+
</object>
|
|
600
|
+
</object>
|
|
601
|
+
<object class="IBPartialClassDescription">
|
|
602
|
+
<string key="className">NSObject</string>
|
|
603
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
604
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
605
|
+
<string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
|
|
606
|
+
</object>
|
|
607
|
+
</object>
|
|
608
|
+
<object class="IBPartialClassDescription">
|
|
609
|
+
<string key="className">NSObject</string>
|
|
610
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
611
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
612
|
+
<string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
|
|
613
|
+
</object>
|
|
614
|
+
</object>
|
|
615
|
+
<object class="IBPartialClassDescription">
|
|
616
|
+
<string key="className">NSObject</string>
|
|
617
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
618
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
619
|
+
<string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
|
|
620
|
+
</object>
|
|
621
|
+
</object>
|
|
622
|
+
<object class="IBPartialClassDescription">
|
|
623
|
+
<string key="className">NSObject</string>
|
|
624
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="839295942">
|
|
625
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
626
|
+
<string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
|
|
627
|
+
</object>
|
|
628
|
+
</object>
|
|
629
|
+
<object class="IBPartialClassDescription">
|
|
630
|
+
<string key="className">UIActivityIndicatorView</string>
|
|
631
|
+
<string key="superclassName">UIView</string>
|
|
632
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
633
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
634
|
+
<string key="minorKey">UIKit.framework/Headers/UIActivityIndicatorView.h</string>
|
|
635
|
+
</object>
|
|
636
|
+
</object>
|
|
637
|
+
<object class="IBPartialClassDescription">
|
|
638
|
+
<string key="className">UIButton</string>
|
|
639
|
+
<string key="superclassName">UIControl</string>
|
|
640
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
641
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
642
|
+
<string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
|
|
643
|
+
</object>
|
|
644
|
+
</object>
|
|
645
|
+
<object class="IBPartialClassDescription">
|
|
646
|
+
<string key="className">UIControl</string>
|
|
647
|
+
<string key="superclassName">UIView</string>
|
|
648
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
649
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
650
|
+
<string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
|
|
651
|
+
</object>
|
|
652
|
+
</object>
|
|
653
|
+
<object class="IBPartialClassDescription">
|
|
654
|
+
<string key="className">UILabel</string>
|
|
655
|
+
<string key="superclassName">UIView</string>
|
|
656
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
657
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
658
|
+
<string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
|
|
659
|
+
</object>
|
|
660
|
+
</object>
|
|
661
|
+
<object class="IBPartialClassDescription">
|
|
662
|
+
<string key="className">UIResponder</string>
|
|
663
|
+
<string key="superclassName">NSObject</string>
|
|
664
|
+
<reference key="sourceIdentifier" ref="839295942"/>
|
|
665
|
+
</object>
|
|
666
|
+
<object class="IBPartialClassDescription">
|
|
667
|
+
<string key="className">UIScrollView</string>
|
|
668
|
+
<string key="superclassName">UIView</string>
|
|
669
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
670
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
671
|
+
<string key="minorKey">UIKit.framework/Headers/UIScrollView.h</string>
|
|
672
|
+
</object>
|
|
673
|
+
</object>
|
|
674
|
+
<object class="IBPartialClassDescription">
|
|
675
|
+
<string key="className">UISearchBar</string>
|
|
676
|
+
<string key="superclassName">UIView</string>
|
|
677
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
678
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
679
|
+
<string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
|
|
680
|
+
</object>
|
|
681
|
+
</object>
|
|
682
|
+
<object class="IBPartialClassDescription">
|
|
683
|
+
<string key="className">UISearchDisplayController</string>
|
|
684
|
+
<string key="superclassName">NSObject</string>
|
|
685
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
686
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
687
|
+
<string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
|
|
688
|
+
</object>
|
|
689
|
+
</object>
|
|
690
|
+
<object class="IBPartialClassDescription">
|
|
691
|
+
<string key="className">UITableView</string>
|
|
692
|
+
<string key="superclassName">UIScrollView</string>
|
|
693
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
694
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
695
|
+
<string key="minorKey">UIKit.framework/Headers/UITableView.h</string>
|
|
696
|
+
</object>
|
|
697
|
+
</object>
|
|
698
|
+
<object class="IBPartialClassDescription">
|
|
699
|
+
<string key="className">UITableViewController</string>
|
|
700
|
+
<string key="superclassName">UIViewController</string>
|
|
701
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
702
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
703
|
+
<string key="minorKey">UIKit.framework/Headers/UITableViewController.h</string>
|
|
704
|
+
</object>
|
|
705
|
+
</object>
|
|
706
|
+
<object class="IBPartialClassDescription">
|
|
707
|
+
<string key="className">UITextField</string>
|
|
708
|
+
<string key="superclassName">UIControl</string>
|
|
709
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="870345012">
|
|
710
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
711
|
+
<string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
|
|
712
|
+
</object>
|
|
713
|
+
</object>
|
|
714
|
+
<object class="IBPartialClassDescription">
|
|
715
|
+
<string key="className">UIView</string>
|
|
716
|
+
<reference key="sourceIdentifier" ref="870345012"/>
|
|
717
|
+
</object>
|
|
718
|
+
<object class="IBPartialClassDescription">
|
|
719
|
+
<string key="className">UIView</string>
|
|
720
|
+
<string key="superclassName">UIResponder</string>
|
|
721
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
722
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
723
|
+
<string key="minorKey">UIKit.framework/Headers/UIView.h</string>
|
|
724
|
+
</object>
|
|
725
|
+
</object>
|
|
726
|
+
<object class="IBPartialClassDescription">
|
|
727
|
+
<string key="className">UIViewController</string>
|
|
728
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
729
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
730
|
+
<string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
|
|
731
|
+
</object>
|
|
732
|
+
</object>
|
|
733
|
+
<object class="IBPartialClassDescription">
|
|
734
|
+
<string key="className">UIViewController</string>
|
|
735
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
736
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
737
|
+
<string key="minorKey">UIKit.framework/Headers/UIPopoverController.h</string>
|
|
738
|
+
</object>
|
|
739
|
+
</object>
|
|
740
|
+
<object class="IBPartialClassDescription">
|
|
741
|
+
<string key="className">UIViewController</string>
|
|
742
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
743
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
744
|
+
<string key="minorKey">UIKit.framework/Headers/UISplitViewController.h</string>
|
|
745
|
+
</object>
|
|
746
|
+
</object>
|
|
747
|
+
<object class="IBPartialClassDescription">
|
|
748
|
+
<string key="className">UIViewController</string>
|
|
749
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
750
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
751
|
+
<string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
|
|
752
|
+
</object>
|
|
753
|
+
</object>
|
|
754
|
+
<object class="IBPartialClassDescription">
|
|
755
|
+
<string key="className">UIViewController</string>
|
|
756
|
+
<string key="superclassName">UIResponder</string>
|
|
757
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
758
|
+
<string key="majorKey">IBFrameworkSource</string>
|
|
759
|
+
<string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
|
|
760
|
+
</object>
|
|
761
|
+
</object>
|
|
762
|
+
</object>
|
|
763
|
+
</object>
|
|
764
|
+
<int key="IBDocument.localizationMode">0</int>
|
|
765
|
+
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
766
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
|
|
767
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
|
768
|
+
<integer value="1024" key="NS.object.0"/>
|
|
769
|
+
</object>
|
|
770
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
|
771
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
|
772
|
+
<integer value="3000" key="NS.object.0"/>
|
|
773
|
+
</object>
|
|
774
|
+
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
|
775
|
+
<string key="IBDocument.LastKnownRelativeProjectPath">store.xcodeproj</string>
|
|
776
|
+
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
|
777
|
+
<string key="IBCocoaTouchPluginVersion">117</string>
|
|
778
|
+
</data>
|
|
779
|
+
</archive>
|