{"id":2003,"url":"https://github.com/neerajbaid/NBEmojiSearchView","last_synced_at":"2025-08-02T05:33:32.030Z","repository":{"id":33767467,"uuid":"37423374","full_name":"neerajbaid/NBEmojiSearchView","owner":"neerajbaid","description":"A searchable emoji dropdown view.","archived":false,"fork":false,"pushed_at":"2015-06-30T01:33:53.000Z","size":8268,"stargazers_count":84,"open_issues_count":1,"forks_count":6,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-07-11T08:42:07.845Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neerajbaid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-14T18:03:43.000Z","updated_at":"2023-03-11T08:44:07.000Z","dependencies_parsed_at":"2022-09-08T18:01:10.074Z","dependency_job_id":null,"html_url":"https://github.com/neerajbaid/NBEmojiSearchView","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/neerajbaid/NBEmojiSearchView","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajbaid%2FNBEmojiSearchView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajbaid%2FNBEmojiSearchView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajbaid%2FNBEmojiSearchView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajbaid%2FNBEmojiSearchView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neerajbaid","download_url":"https://codeload.github.com/neerajbaid/NBEmojiSearchView/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajbaid%2FNBEmojiSearchView/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268339405,"owners_count":24234544,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-01-05T20:16:00.969Z","updated_at":"2025-08-02T05:33:31.353Z","avatar_url":"https://github.com/neerajbaid.png","language":"Objective-C","funding_links":[],"categories":["UI","Text"],"sub_categories":["Layout","Other free courses","Other Testing","Keychain"],"readme":"NBEmojiSearchView\n====================\nIntegrate a searchable emoji dropdown into your iOS app in just a few lines.\n\n![](screencast.gif)\n\nTo start searching, the user just types a `:`. Then, the `emojiSearchView` will automatically parse text to find the user's search query and display results appropriately. When the user selects an emoji, the `emojiSearchView` will automatically insert it into the correct location in the `textField` or `textView`.\n\n##Installation\n###CocoaPods\n[CocoaPods](http://cocoapods.org) is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like NBEmojiSearchView in your projects.\n\n```ruby\npod \"NBEmojiSearchView\"\n```\n\n###Alternative\nAlternatively, you can just drag the \u003cb\u003eSource\u003c/b\u003e folder into your project.\n\n##Usage\nInstantiate an `NBEmojiSearchView`, then install it on a `UITextField` or `UITextView` as shown below.\n```smalltalk\nNBEmojiSearchView *emojiSearchView = [[NBEmojiSearchView alloc] init];\n```\nthen\n```smalltalk\n[emojiSearchView installOnTextField:textField];\n```\nor\n```smalltalk\n[emojiSearchView installOnTextView:textView];\n```\nYou control sizing and placement of the `emojiSearchView`. The `emojiSearchView` will appear and disappear at the appropriate times automatically.\n\n###Customization\n\nThe `UITableView` that displays results is exposed.\n```smalltalk\n@property (nonatomic, strong) UITableView *tableView;\n```\n\n#### Animation\n\nThe appearance and disappearance animations. Set these blocks with custom animations you'd like the `emojiSearchView` to execute.\n\nIf you choose to customize these the appear or disappear animation, you MUST call `appearAnimationDidFinish` or `disappearAnimationDidFinish` when the animation completes, respectively.\n```smalltalk\n@property (nonatomic, copy) void (^appearAnimationBlock)(); \"Default: A non-animated alpha change from 0.0 to 1.0.\"\n@property (nonatomic, copy) void (^disappearAnimationBlock)(); \"Default: A non-animated alpha change from 1.0 to 0.0.\"\n```\n\n**Example**\n\n```smalltalk\nself.emojiSearchView.appearAnimationBlock = ^{\n    [UIView animateWithDuration:0.2 animations:^{\n        weakSelf.emojiSearchView.alpha = 1.0;\n    } completion:^(BOOL finished) {\n        [weakSelf.emojiSearchView appearAnimationDidFinish];\n    }];\n};\n```\n\n#### Other Visuals\n\nThe font of the emoji result cells.\n```smalltalk\n@property (nonatomic, strong) UIFont *font;\n```\n\nThe text color of the emoji result cells.\n```smalltalk\n@property (nonatomic, strong) UIColor *textColor;\n```\n\nThe header title of the `tableView` that displays emoji search results.\n```smalltalk\n@property (nonatomic, strong) NSString *headerTitle;\n```\n\n###Delegate Methods\n\nThese delegate methods revolve around the appearance and disappearance of the search view. Please [let me know](http://twitter.com/2neeraj) or PR if you'd like additional delegate methods.\n```smalltalk\n- (void)emojiSearchViewWillAppear:(NBEmojiSearchView *)emojiSearchView;\n- (void)emojiSearchViewDidAppear:(NBEmojiSearchView *)emojiSearchView;\n- (void)emojiSearchViewWillDisappear:(NBEmojiSearchView *)emojiSearchView;\n- (void)emojiSearchViewDidDisappear:(NBEmojiSearchView *)emojiSearchView;\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneerajbaid%2FNBEmojiSearchView","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneerajbaid%2FNBEmojiSearchView","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneerajbaid%2FNBEmojiSearchView/lists"}