CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

CVTips 0.12

CVTips 0.12

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Aug 2017

Maintained by Coulton Vento.



CVTips 0.12

CVTips are presentable tips that overlay the screen's content - great for onboarding. The tips animate in and collide when the user drags the tips around.

You can see CVTips in action in Dwindle.

Installation

If you use cocoapods (you should), installation is easy.

  1. Add CVTips to your Podfile: pod 'CVTips', '~> 0.11'
  2. Run pod install

If you don't use cocoapods, you can always manually import the files in the CVTips directory.

Basic Implementation

// Create tips
CVTip *one = [[CVTip alloc] initWithTitle:@"Dummy tip number one." icon:nil font:[UIFont systemFontOfSize:18]];
CVTip *two = [[CVTip alloc] initWithTitle:@"Dummy tip number two." icon:nil font:[UIFont systemFontOfSize:18]];

// Present them
CVTipsController *tipsController = [[CVTipsController alloc] initWithTips:@[one,two]];
[tipsController show];