{"id":32311542,"url":"https://github.com/sqrline/honeykit","last_synced_at":"2026-03-11T05:01:32.397Z","repository":{"id":49150583,"uuid":"229989931","full_name":"sqrline/HoneyKit","owner":"sqrline","description":"HoneyKit is extensions for solve common tasks in iOS development","archived":false,"fork":false,"pushed_at":"2025-12-07T12:22:55.000Z","size":105,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-15T13:36:52.183Z","etag":null,"topics":["cocoapods","ios-framework","swift5","swiift-extension"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sqrline.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-12-24T18:40:24.000Z","updated_at":"2025-12-07T12:19:24.000Z","dependencies_parsed_at":"2022-08-25T15:21:42.176Z","dependency_job_id":null,"html_url":"https://github.com/sqrline/HoneyKit","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/sqrline/HoneyKit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sqrline%2FHoneyKit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sqrline%2FHoneyKit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sqrline%2FHoneyKit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sqrline%2FHoneyKit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sqrline","download_url":"https://codeload.github.com/sqrline/HoneyKit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sqrline%2FHoneyKit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30372125,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"online","status_checked_at":"2026-03-11T02:00:07.027Z","response_time":84,"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":["cocoapods","ios-framework","swift5","swiift-extension"],"created_at":"2025-10-23T09:32:47.426Z","updated_at":"2026-03-11T05:01:32.392Z","avatar_url":"https://github.com/sqrline.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🍯 HoneyKit\n\n`HoneyKit` is extensions for solve common tasks in iOS development\n\n## 🛠 Install\n\n#### CocoaPods\n\nFor integrate `HoneyKit` into your Xcode project using [CocoaPods](https://cocoapods.org), specify it in your `Podfile`:\n\n```ruby\nsource 'https://github.com/CocoaPods/Specs.git'\nplatform :ios, '11.0'\nuse_frameworks!\n\ntarget '\u003cYour Target Name\u003e' do\npod 'HoneyKit', '~\u003e 1.1.0'\nend\n```\n\nThen, run the following terminal command in project directory:\n\n```bash\n$ pod install\n```\n\n#### Swift Package Manager\n\nFor use [The Swift Package Manager](https://swift.org/package-manager/) you need add `HoneyKit` dependency to `Package.swift` file:\n\n```swift\nimport PackageDescription\n\nlet package = Package(\n  name: \"PROJECT_NAME\",\n  targets: [],\n  dependencies: [\n      .package(url: \"https://github.com/sqrline/HoneyKit.git\", from: \"1.1.0\")\n  ]\n)\n```\n\nThen add `HoneyKit` to your targets dependencies:\n\n```swift\n.target(\n  name: \"TARGET_NAME\",\n  dependencies: [\n      \"HoneyKit\",\n  ]\n),\n```\n\nAnd run terminal command:\n\n```bash\nswift package update\n```\n\n## ⚡️ List of extensions\n\n#### Swift\n\n##### Collection\n* [IsNotEmpty](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/Swift/Collection/Collection%2BIsNotEmpty.swift). Indicating whether the collection is not empty.\n* [SafeSubscript](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/Swift/Collection/Collection%2BSafeSubscript.swift). Returns the element at the specified index if it is within bounds, otherwise nil.\n##### String\n* [HTML](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/Swift/String/String%2BHTML.swift). Converts html to an NSAttributedString with system iOS font.\n* [Localized](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/Swift/String/String%2BLocalized.swift). Returns an localized version of the string.\n\n#### Foundation\n\n##### Date\n* [DayStep](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/Foundation/Date/Date%2BDayStep.swift). Returns date after adding step to exists date based on direction.\n* [DaysMonth](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/Foundation/Date/Date%2BDaysMonth.swift). Returns start/end day of month.\n* [DaysWeek](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/Foundation/Date/Date%2BDaysWeek.swift). Returns start/end day of week.\n\n#### UIKit\n\n##### UIAlertController\n* [InitWithButtons](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIAlertController/UIAlertController%2BInitWithButtons.swift). Creates alert with action buttons.\n\n##### UIBarButtonItem\n* [Badge](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIBarButtonItem/UIBarButtonItem%2BBadge.swift). Shows notification badge on bar button.\n\n##### UIButton\n* [LoadingIndicator](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIButton/UIButton%2BLoadingIndicator.swift). Shows/hides activity indicator in button for indicate loading process.\n* [SetTitle](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIButton/UIButton%2BSetTitle.swift). Sets title with animation.\n\n##### UICollectionView\n* [RegisterCell](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UICollectionView/UICollectionView%2BRegisterCell.swift). Registers a cell by class or nib for use in creating new collection cells.\n* [ReusableCell](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UICollectionView/UICollectionView%2BReusableCell.swift). Returns a reusable collection view cell object by class with index path.\n\n##### UIColor\n* [Hex](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIColor/UIColor%2BHex.swift). Conveniece init color from hex string.\n\n##### UIView\n* [ActivityIndicator](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIView/UIView%2BActivityIndicator.swift). Adds/hides container with activity indicator in view.\n* [AddSubview](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIView/UIView%2BAddSubview.swift). Adds view with all sides constraints for filling into superview.\n* [HideKeyboard](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIView/UIView%2BHideKeyboard.swift). Hides keyboard if tap on current view's area.\n* [InitFromXib](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIView/UIView%2BInitFromXib.swift). Instantiates view from xib.\n* [RemoveSubview](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIView/UIView%2BRemoveSubview.swift). Removes all subviews from current view.\n* [Shadow](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIView/UIView%2BShadow.swift). Drops shadow from the current view.\n\n##### UITableView\n* [RegisterCell](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UITableView/UITableView%2BRegisterCell.swift). Registers a cell by class or nib for use in creating new table cells.\n* [ReusableCell](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UITableView/UITableView%2BReusableCell.swift). Returns a reusable table view cell object by class.\n\n##### UIViewController\n* [Child](https://github.com/sqrline/HoneyKit/blob/master/HoneyKit/UIKit/UIViewController/UIViewController%2BChild.swift). Handles (adds, removes and switches) child of the current view controller.\n\n## 🖥 Contributing\n\nYour contributions are always welcome! For add’s new extension submit a pull request. See [CONTRIBUTING.md](https://github.com/sqrline/HoneyKit/blob/master/CONTRIBUTING.md) for guidelines.\n\n## 🖖 Authors\n\n#### Vladimir Pchelyakov\n* Email: [v.pchelyakov@yandex.ru](mailto:v.pchelyakov@yandex.ru)\n* Telegram: [@BastienBalla](https://t.me/BastienBalla)\n\n#### Aleksey Pleshkov\n* Website: [alekseypleshkov.ru](https://alekseypleshkov.ru)\n* Email: [im@alekseypleshkov.ru](mailto:im@alekseypleshkov.ru)\n* Telegram: [@AlekseyPleshkov](https://t.me/AlekseyPleshkov)\n\n## ©️ License\n\n`HoneyKit` is released under the MIT license. In short, it's royalty-free but you must keep the copyright notice in your code or software distribution.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsqrline%2Fhoneykit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsqrline%2Fhoneykit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsqrline%2Fhoneykit/lists"}