/VMBubbleComitText

Make bubble comic in picture

Primary LanguageObjective-C

VMBubbleComitText

https://youtu.be/ia4ga9S6oZI

#Author VuMai vumai.me

Overview

VMBubbleComitText is creating all kinds of bubble under the existing format. You can create comic pages with your available image.

How to use

First, you need to copy folder SourceCode to your project. Then, import them to your class

#import "VMBubbleText.h"

Now you can add this funtion to show bubble text with type:

    // 1
    VMBubbleText *draw = [[VMBubbleText alloc] initWithFrame:CGRectMake(50, 100, 200, 100)];
    draw.backgroundColor = [UIColor whiteColor];
    draw.boderColor = [UIColor blackColor];
    draw.typeOfBubble = type;
    
    [draw initBubbleOval];//2

Let’s run through this method step by step:

  1. Make bubble commic text with background color, boder color, type with:

type = 1:

alt tag

type = 2:

alt tag

type = 3:

alt tag

type = 4:

alt tag

type = 5:

alt tag

type = 6:

alt tag

type = 7:

alt tag

type = 8:

alt tag

  1. Make bubble text with config you make.

Release notes

Version 1.0

MIT License

Copyright (c) 2015 VuMai

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.