8000 GitHub - 1plus4/UIOutlineLabel: Subclass of UILabel to draw outline characters
[go: up one dir, main page]

Skip to content

1plus4/UIOutlineLabel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Overvire

This is a subclass of UILabel to draw outline characters.

Usage

UIOutlineLabel *label = [[UIOutlineLabel alloc] init];

// configuration of UILabel
label.frame = CGRectMake(0, 0, 100, 50);
label.textColor = [UIColor whiteColor];
label.font = [UIFont boldSystemFontOfSize:30];
label.text = @"Hello world";

// configuration of UIOutlineLabel
label.outlineColor = [UIColor blackColor]; // color of outline
label.outlineSize = 3; // size of outline

[self.view addSubview:label];

About

Subclass of UILabel to draw outline characters

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0