CBZSplashView icon indicating copy to clipboard operation
CBZSplashView copied to clipboard

Twitter style Splash Screen View. Grows to reveal the Initial view behind

Results 13 CBZSplashView issues
Sort by recently updated
recently updated
newest added

How to set the bezier position to center ? As you can see in picture it's appearing at the bottom instead of center : ![img_0059](https://cloud.githubusercontent.com/assets/1204608/11535974/960972b6-9916-11e5-801f-b144676402e6.PNG)

As a suggestion, I spent an entire day playing around with a bunch of bezier paths, some complicated, some very simple, until it hit me, the direction of the winding...

Added project with shared scheme for support for management via [Carthage](https://github.com/Carthage/Carthage)

__unused UIImage *icon = [UIImage imageNamed:@"circle"]; //UIBezierPath *bezier = [UIBezierPath twitterShape]; UIColor *color = kATOrangeColor; ``` self.splashView = [CBZSplashView splashViewWithIcon:icon backgroundColor:color]; self.splashView.iconColor = [UIColor purpleColor]; self.splashView.animationDuration = 1.1; [self.view addSubview:self.splashView];...

I want to load a UIViewController instead of an image when animation is done. How can I do that?

could CBZSplashView also support launching in landscape mode. if you ignore the location pop-up, here's what you get at present: ![ios simulator screen shot aug 30 2014 12 08 37...

Same pull request as [this one](https://github.com/callumboddy/CBZSplashView/pull/18) but cleaner. It allows user to modify the scale tranforms, which was usefull for me. I remove the Pod folder and indicate in the...

The `startAnimation` method uses `+ (void)animateWithDuration:(NSTimeInterval)duration delay:(NSTimeInterval)delay usingSpringWithDamping:(CGFloat)dampingRatio initialSpringVelocity:(CGFloat)velocity options:(UIViewAnimationOptions)options animations:(void (^)(void))animations completion:(void (^)(BOOL finished))completion NS_AVAILABLE_IOS(7_0);` which is only available in iOS7 but the cocoapod specifies only ios6 is required.

s.source = { :git => "https://github.com/callumboddy/CBZSplashView.git", :tag => '0.1.1'} I believe you want the version to be '1.0.0'

After adding the new masking functionality, there is a new dependency: `QuartzCore`. Need to update the readme to make sure users are aware of that. Also, need to show the...

enhancement