SRGNovelGameTexts can show text view like a novel game by easily and simple interface.
##Screenshot

// initialize novel text view
SRGNovelGameTexts *novelGameText = [SRGNovelGameTexts new];
novelGameText.frame = CGRectMake(0,0,100,100);
novelGameText.textColor = [UIColor blackColor];
[self.view addSubview:novelGameText];
// set texts
[novelGameText setDisplayText:@"Hello Novel Texts View"];
// start effect
[novelGameText startDisplayingText];See the demo project for more examples. ##Setup Instructions Install with CocoaPods by adding the following to your Podfile:
platform :ios, '7.0'
pod 'SRGNovelGameTexts', '~> 0.0.2'or add manually:
Add SRGNovelGameTexts.h & SRGNovelGameTexts.m to your project.