CocoaPods trunk is moving to be read-only. Read more on the blog, there are 12 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Jan 2015 |
Maintained by kazu0620.
SRGNovelGameTexts can show text view like a novel game texts, its easily and simple.
// initialize novel text view
SRGNovelGameTexts *novelGameText = [SRGNovelGameTexts new];
novelGameText.frame = CGRectMake(0,0,100,100);
novelGameText.textColor = [UIColor blackColor];
[self.view addSubview:novelGameText];
// set display
[novelGameText setText:@"Hello Novel Texts View"];
// start effect
[novelGameText startDisplayingText];See the demo project for more examples.
Install with CocoaPods by adding the following to your Podfile:
platform :ios, '7.0'
pod 'SRGNovelGameTexts', '~> 0.0.1'or add manually:
Add SRGNovelGameTexts.h & SRGNovelGameTexts.m to your project.