Go to file
isaced 70fe2a76ff Add delete button 2014-12-30 17:13:37 +08:00
Example Add delete button 2014-12-30 17:13:37 +08:00
ISEmojiView Add delete button 2014-12-30 17:13:37 +08:00
.gitignore Initial commit 2014-12-25 14:42:40 +08:00
LICENSE Initial commit 2014-12-25 14:42:40 +08:00
README.md Update README.md 2014-12-25 17:37:38 +08:00
screenshot.jpg Update screenshot 2014-12-26 10:02:46 +08:00

README.md

ISEmojiView

Emoji Keyboard for iOS

screenshot

##Useage

###import

#import "ISEmojiView.h"

###Init

// init ISEmojiView
ISEmojiView *emojiView = [[ISEmojiView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 216)];
emojiView.delegate = self;
self.textView.inputView = emojiView;

###Response

add protocol ISEmojiViewDelegate and implementation emojiView:didSelectEmoji: method

-(void)emojiView:(ISEmojiView *)emojiView didSelectEmoji:(NSString *)emoji{
    self.textView.text = [self.textView.text stringByAppendingString:emoji];
}

##Author

isaced@163.com

##License

MIT