├── .gitignore ├── BeK0sukeTibubble_Prefix.pch ├── Classes ├── .gitignore ├── BeK0sukeTibubbleModule.h ├── BeK0sukeTibubbleModule.m ├── BeK0sukeTibubbleModuleAssets.h ├── BeK0sukeTibubbleModuleAssets.m ├── BeK0sukeTibubbleView.h ├── BeK0sukeTibubbleView.m ├── BeK0sukeTibubbleViewProxy.h └── BeK0sukeTibubbleViewProxy.m ├── LICENSE ├── README ├── README.md ├── TiBubble.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── TiBubble.xccheckout │ └── xcuserdata │ │ └── k_isobe.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── k_isobe.xcuserdatad │ └── xcschemes │ ├── Build & Test.xcscheme │ ├── TiBubble.xcscheme │ └── xcschememanagement.plist ├── assets └── README ├── be.k0suke.tibubble-iphone-0.1.zip ├── be.k0suke.tibubble-iphone-0.2.zip ├── documentation └── index.md ├── example ├── app.js ├── left.png └── right.png ├── hooks ├── README ├── add.py ├── install.py ├── remove.py └── uninstall.py ├── manifest ├── module.xcconfig ├── platform └── README ├── screenshot.png ├── timodule.xml └── titanium.xcconfig /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | bin 3 | build 4 | -------------------------------------------------------------------------------- /BeK0sukeTibubble_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/BeK0sukeTibubble_Prefix.pch -------------------------------------------------------------------------------- /Classes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/.gitignore -------------------------------------------------------------------------------- /Classes/BeK0sukeTibubbleModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/BeK0sukeTibubbleModule.h -------------------------------------------------------------------------------- /Classes/BeK0sukeTibubbleModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/BeK0sukeTibubbleModule.m -------------------------------------------------------------------------------- /Classes/BeK0sukeTibubbleModuleAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/BeK0sukeTibubbleModuleAssets.h -------------------------------------------------------------------------------- /Classes/BeK0sukeTibubbleModuleAssets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/BeK0sukeTibubbleModuleAssets.m -------------------------------------------------------------------------------- /Classes/BeK0sukeTibubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/BeK0sukeTibubbleView.h -------------------------------------------------------------------------------- /Classes/BeK0sukeTibubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/BeK0sukeTibubbleView.m -------------------------------------------------------------------------------- /Classes/BeK0sukeTibubbleViewProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/BeK0sukeTibubbleViewProxy.h -------------------------------------------------------------------------------- /Classes/BeK0sukeTibubbleViewProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/Classes/BeK0sukeTibubbleViewProxy.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/README.md -------------------------------------------------------------------------------- /TiBubble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/TiBubble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TiBubble.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/TiBubble.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TiBubble.xcodeproj/project.xcworkspace/xcshareddata/TiBubble.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/TiBubble.xcodeproj/project.xcworkspace/xcshareddata/TiBubble.xccheckout -------------------------------------------------------------------------------- /TiBubble.xcodeproj/project.xcworkspace/xcuserdata/k_isobe.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/TiBubble.xcodeproj/project.xcworkspace/xcuserdata/k_isobe.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TiBubble.xcodeproj/project.xcworkspace/xcuserdata/k_isobe.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/TiBubble.xcodeproj/project.xcworkspace/xcuserdata/k_isobe.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /TiBubble.xcodeproj/xcuserdata/k_isobe.xcuserdatad/xcschemes/Build & Test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/TiBubble.xcodeproj/xcuserdata/k_isobe.xcuserdatad/xcschemes/Build & Test.xcscheme -------------------------------------------------------------------------------- /TiBubble.xcodeproj/xcuserdata/k_isobe.xcuserdatad/xcschemes/TiBubble.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/TiBubble.xcodeproj/xcuserdata/k_isobe.xcuserdatad/xcschemes/TiBubble.xcscheme -------------------------------------------------------------------------------- /TiBubble.xcodeproj/xcuserdata/k_isobe.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/TiBubble.xcodeproj/xcuserdata/k_isobe.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/assets/README -------------------------------------------------------------------------------- /be.k0suke.tibubble-iphone-0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/be.k0suke.tibubble-iphone-0.1.zip -------------------------------------------------------------------------------- /be.k0suke.tibubble-iphone-0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/be.k0suke.tibubble-iphone-0.2.zip -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/documentation/index.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/example/app.js -------------------------------------------------------------------------------- /example/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/example/left.png -------------------------------------------------------------------------------- /example/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/example/right.png -------------------------------------------------------------------------------- /hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/hooks/README -------------------------------------------------------------------------------- /hooks/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/hooks/add.py -------------------------------------------------------------------------------- /hooks/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/hooks/install.py -------------------------------------------------------------------------------- /hooks/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/hooks/remove.py -------------------------------------------------------------------------------- /hooks/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/hooks/uninstall.py -------------------------------------------------------------------------------- /manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/manifest -------------------------------------------------------------------------------- /module.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/module.xcconfig -------------------------------------------------------------------------------- /platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/platform/README -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/screenshot.png -------------------------------------------------------------------------------- /timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/timodule.xml -------------------------------------------------------------------------------- /titanium.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0sukey/TiBubbleView/HEAD/titanium.xcconfig --------------------------------------------------------------------------------