{"id":18795087,"url":"https://github.com/daisuke-t-jp/llaeasyalertmanager","last_synced_at":"2025-12-30T01:30:15.085Z","repository":{"id":56918696,"uuid":"168055193","full_name":"daisuke-t-jp/LLAEasyAlertManager","owner":"daisuke-t-jp","description":"LLAEasyAlertManager is class for easy use of UIAlertController.","archived":false,"fork":false,"pushed_at":"2019-04-27T02:34:31.000Z","size":158,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-30T11:45:59.273Z","etag":null,"topics":["carthage","cocoapods","swift","uialertcontroller"],"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/daisuke-t-jp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-01-28T23:30:09.000Z","updated_at":"2019-12-24T01:36:39.000Z","dependencies_parsed_at":"2022-08-20T21:10:06.054Z","dependency_job_id":null,"html_url":"https://github.com/daisuke-t-jp/LLAEasyAlertManager","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daisuke-t-jp%2FLLAEasyAlertManager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daisuke-t-jp%2FLLAEasyAlertManager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daisuke-t-jp%2FLLAEasyAlertManager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daisuke-t-jp%2FLLAEasyAlertManager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daisuke-t-jp","download_url":"https://codeload.github.com/daisuke-t-jp/LLAEasyAlertManager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239719541,"owners_count":19685959,"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","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":["carthage","cocoapods","swift","uialertcontroller"],"created_at":"2024-11-07T21:32:32.885Z","updated_at":"2025-12-30T01:30:15.039Z","avatar_url":"https://github.com/daisuke-t-jp.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://github.com/daisuke-t-jp/LLAEasyAlertManager/blob/master/doc/header.png\" width=\"400\"\u003e\u003c/br\u003e\n------\n![Platform](https://img.shields.io/badge/Platform-iOS%2010.0+-blue.svg)\n[![Language Swift%205.0](https://img.shields.io/badge/Language-Swift%205.0-orange.svg)](https://developer.apple.com/swift)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-green.svg)](https://github.com/Carthage/Carthage)\n[![Cocoapods](https://img.shields.io/cocoapods/v/LLAEasyAlertManager.svg)](https://cocoapods.org/pods/LLAEasyAlertManager)\n[![Build Status](https://travis-ci.org/daisuke-t-jp/LLAEasyAlertManager.svg?branch=master)](https://travis-ci.org/daisuke-t-jp/LLAEasyAlertManager)\n\n\n# What is this?\n\n**LLAEasyAlertManager** is class for easy use of UIAlertController.\n\n\n\n# Install\n### Carthage\n`github \"daisuke-t-jp/LLAEasyAlertManager\"`\n\n### CocoaPods\n```\nuse_frameworks!\n\ntarget 'target' do\npod 'LLAEasyAlertManager'\nend\n```\n\n\n# Usage\n``` swift\nimport LLAEasyAlertManager\n\n\n/**\n * Present alert with\n * - Message\n * - OK button\n */\nLLAEasyAlertManager.sharedInstance.present(self, message: \"Message\")\n\n/**\n * Present alert with\n * - Message\n * - Title\n * - OK button\n */\nLLAEasyAlertManager.sharedInstance.present(self, message: \"MessageTitle\", title: \"title\")\n\n/**\n * Present alert with\n * - Message\n * - Title\n * - OK button\n * - Default action handler\n */\nLLAEasyAlertManager.sharedInstance.present(self,\n  message: \"HandlerDefault\",\n  title: \"title\",\n  handlerDefault: { (action: UIAlertAction!) in\n    print(\"default\") })\n\n/**\n * Present alert with\n * - Message\n * - Title\n * - OK button\n * - Cancel button\n * - Cancel action handler\n */\nLLAEasyAlertManager.sharedInstance.present(self,\n  message: \"HandlerCancel\",\n  title: \"title\",\n  handlerDefault: nil,\n  handlerCancel: { (action: UIAlertAction!) in\n    print(\"cancel\") })\n\n/**\n * Present alert with\n * - Message\n * - Title\n * - OK button\n * - Cancel button\n * - Default action handler\n * - Cancel action handler\n */\nLLAEasyAlertManager.sharedInstance.present(self,\n  message: \"HandlerBoth\",\n  title: \"title\",\n  handlerDefault: { (action: UIAlertAction!) in\n    print(\"default\")},\n  handlerCancel: { (action: UIAlertAction!) in\n    print(\"cancel\")}\n                          \n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaisuke-t-jp%2Fllaeasyalertmanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaisuke-t-jp%2Fllaeasyalertmanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaisuke-t-jp%2Fllaeasyalertmanager/lists"}