Popularity
6.2
Declining
Activity
0.0
Stable
638
39
78

Code Quality Rank: L5
Programming language: Objective-C
License: Apache License 2.0
Tags: Text    
Latest version: v0.2.0

NSStringEmojize alternatives and similar libraries

Based on the "Text" category.
Alternatively, view NSStringEmojize alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of NSStringEmojize or a related project?

Add another 'Text' Library

README

NSString+Emojize

A category on NSString to turn codes from Emoji Cheat Sheet into Unicode emoji characters.

Getting Started

In order to use NSString+Emojize, you'll want to add the entirety of the NSString+Emojize directory to your project. To get started, simply:

#import "NSString+Emojize.h"
NSString *emojiString = @"This comment has an emoji :mushroom:";
NSLog(@"%@", [emojiString emojizedString]);

Methods

- (NSString *)emojizedString;
+ (NSString *)emojizedStringWithString:(NSString *)aString;

iOS Support

NSString+Emojize is tested on iOS 5 and up. Older versions of iOS may work but are not currently supported.

ARC

NSString+Emojize uses ARC. If you are including NSString+Emojize in a project that does not use Automatic Reference Counting (ARC), you will need to set the -fobjc-arc compiler flag on all of the NSString+Emojize source files. To do this in Xcode, go to your active target and select the "Build Phases" tab. Now select all NSString+Emojize source files, press Enter, insert -fobjc-arc and then "Done" to enable ARC for NSString+Emojize.