https://github.com/hansemannn/ti.splashview
💦 Support for the splash-screen library CBZSplashView in Appcelerator Titanium.
https://github.com/hansemannn/ti.splashview
ios native splashview titanium
Last synced: 10 months ago
JSON representation
💦 Support for the splash-screen library CBZSplashView in Appcelerator Titanium.
- Host: GitHub
- URL: https://github.com/hansemannn/ti.splashview
- Owner: hansemannn
- License: other
- Created: 2017-01-30T10:54:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-03T18:38:13.000Z (over 9 years ago)
- Last Synced: 2025-06-13T10:51:00.134Z (about 1 year ago)
- Topics: ios, native, splashview, titanium
- Language: Objective-C
- Homepage:
- Size: 926 KB
- Stars: 18
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ti.SplashView
[](http://twitter.com/hansemannnn)
Support for the Twitter-like splash-screen library [`CBZSplashView`](https://github.com/callumboddy/CBZSplashView) in Titanium. Thanks to @callumboddy for that awesome library!

### Example
```js
var Splash = require('ti.splashview');
var win = Ti.UI.createWindow({
backgroundColor: 'yellow'
});
var splashView = Splash.createSplashView({
image: "appc-logo.png",
fillColor: "blue"
});
win.addEventListener('focus', function() {
setTimeout(function() {
splashView.startAnimation();
},1000);
});
win.add(splashView);
win.open();
```
### Author
Hans Knoechel ([@hansemannnn](https://twitter.com/hansemannnn) / [Web](http://hans-knoechel.de))
### License
Apache 2.0
### Contributing
Code contributions are greatly appreciated, please submit a new [pull request](https://github.com/hansemannn/ti.splashview/pull/new/master)!