SRGNovelGameTexts 0.0.1

SRGNovelGameTexts 0.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jan 2015

Maintained by kazu0620.



  • By
  • Kazuhiro Sakamoto

SRGNovelGameTexts can show text view like a novel game texts, its easily and simple.

Screenshot

Examples


    // 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.

Setup Instructions

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.