ayushgoel / AGEmojiKeyboard

Emoji Keyboard for iOS
MIT License
692 stars 175 forks source link

How can i change segment with images like whatsapp? #14

Closed bintu1234 closed 8 years ago

bintu1234 commented 8 years ago

Hi How can i change emoji segment with images i want to use like whatsapp images instead of segment please can any body done that?(I'm not talking about the emoji images only segment )

ayushgoel commented 8 years ago

You need to implement emojiKeyboardView:imageForSelectedCategory: and emojiKeyboardView:imageForNonSelectedCategory:.

bintu1234 commented 8 years ago

@ayushgoel Thanks for replay i tried above methods but which is not showing any image when i use above mehods

ayushgoel commented 8 years ago

Can you please show the code you are using?

bintu1234 commented 8 years ago

- (UIImage *)emojiKeyboardView:(AGEmojiKeyboardView *)emojiKeyboardView imageForSelectedCategory:(AGEmojiKeyboardViewCategoryImage)category { UIImage *img=[UIImage imageNamed:@"broad"]; [img imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]; return img; }

bintu1234 commented 8 years ago

instead of random image i am just taken my own image but it is not showing as segment image please help me

ayushgoel commented 8 years ago

@bintu1234 Check the Example project in the repo, especially this file. Hope it helps.

ayushgoel commented 8 years ago

Closing this as no followup.

bintu1234 commented 8 years ago

@ayushgoel Thanks it's working fine now.