Latest | 0.0.1 |
---|---|
Homepage | https://github.com/kazu0620/SRGNovelGameTexts |
License | MIT |
Platforms | ios 7.0, requires ARC |
Authors |
SRGNovelGameTexts can show text view like a novel game by easily and simple interface.
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 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.
Latest podspec
{ "name": "SRGNovelGameTexts", "version": "0.0.1", "summary": "SRGNovelGameTexts is view parts that adds text like a novel game.", "homepage": "https://github.com/kazu0620/SRGNovelGameTexts", "license": "MIT", "authors": { "Kazuhiro Sakamoto": "[email protected]" }, "source": { "git": "https://github.com/kazu0620/SRGNovelGameTexts.git", "tag": "0.0.1" }, "platforms": { "ios": "7.0" }, "source_files": [ "Classes", "Classes/**/*.{h,m}" ], "requires_arc": true }
Sun, 28 Feb 2016 14:36:03 +0000