{"id":23900698,"url":"https://github.com/pcjbird/quickmobiletextfield","last_synced_at":"2026-02-16T01:05:29.504Z","repository":{"id":56921562,"uuid":"127405103","full_name":"pcjbird/QuickMobileTextField","owner":"pcjbird","description":"A Chinese mainland area mobile phone number input textfield. 中国大陆地区手机号码格式化输入文本框。","archived":false,"fork":false,"pushed_at":"2018-08-21T06:06:23.000Z","size":312,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T18:45:13.365Z","etag":null,"topics":["area","chinese","format","input","ios","mainland","mobile","number","phone","text","textfield"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","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/pcjbird.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":"2018-03-30T08:47:39.000Z","updated_at":"2020-09-14T02:20:37.000Z","dependencies_parsed_at":"2022-08-21T04:50:43.352Z","dependency_job_id":null,"html_url":"https://github.com/pcjbird/QuickMobileTextField","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pcjbird%2FQuickMobileTextField","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pcjbird%2FQuickMobileTextField/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pcjbird%2FQuickMobileTextField/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pcjbird%2FQuickMobileTextField/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pcjbird","download_url":"https://codeload.github.com/pcjbird/QuickMobileTextField/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248298075,"owners_count":21080313,"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":["area","chinese","format","input","ios","mainland","mobile","number","phone","text","textfield"],"created_at":"2025-01-04T20:36:38.229Z","updated_at":"2026-02-16T01:05:29.445Z","avatar_url":"https://github.com/pcjbird.png","language":"Objective-C","readme":"![logo](logo.png)\n[![Build Status](http://img.shields.io/travis/pcjbird/QuickMobileTextField/master.svg?style=flat)](https://travis-ci.org/pcjbird/QuickMobileTextField)\n[![Pod Version](http://img.shields.io/cocoapods/v/QuickMobileTextField.svg?style=flat)](http://cocoadocs.org/docsets/QuickMobileTextField/)\n[![Pod Platform](http://img.shields.io/cocoapods/p/QuickMobileTextField.svg?style=flat)](http://cocoadocs.org/docsets/QuickMobileTextField/)\n[![Pod License](http://img.shields.io/cocoapods/l/QuickMobileTextField.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0.html)\n[![CocoaPods](https://img.shields.io/cocoapods/at/QuickMobileTextField.svg)](https://github.com/pcjbird/QuickMobileTextField)\n[![CocoaPods](https://img.shields.io/cocoapods/dt/QuickMobileTextField.svg)](https://github.com/pcjbird/QuickMobileTextField)\n[![GitHub release](https://img.shields.io/github/release/pcjbird/QuickMobileTextField.svg)](https://github.com/pcjbird/QuickMobileTextField/releases)\n[![GitHub release](https://img.shields.io/github/release-date/pcjbird/QuickMobileTextField.svg)](https://github.com/pcjbird/QuickMobileTextField/releases)\n[![Website](https://img.shields.io/website-pcjbird-down-green-red/https/shields.io.svg?label=author)](https://pcjbird.github.io)\n\n\n# QuickMobileTextField\n### A Chinese mainland area mobile phone number input textfield. 中国大陆地区手机号码格式化输入文本框。\n    \n## 特性 / Features\n \n 1. 中国大陆地区手机号码 3/4/4 格式化输入。\n 2. 支持设置 placeholder 颜色。\n 3. 支持设置文字在输入框内的间距。\n 4. 预设键盘类型和关闭自动校正，自动限制输入长度。\n 5. 支持设置预输入手机号，支持直接获取非格式化的手机号文本(不含空格)。\n 6. 支持 xib, storyboard。\n 7. 支持 Material 风格。\n\n## 演示 / Demo\n \n\u003cp align=\"center\"\u003e\u003cimg src=\"demo.gif\" title=\"demo\"\u003e\u003c/p\u003e\n    \n##  安装 / Installation\n\n方法一：`QuickMobileTextField` is available through CocoaPods. To install it, simply add the following line to your Podfile:\n```\npod 'QuickMobileTextField'\n```\n## 使用 / Usage\n```\n#import \u003cQuickMobileTextField/QuickMobileTextField.h\u003e\n\n@interface ViewController ()\n\n@property (weak, nonatomic) IBOutlet QuickMobileTextField *mobileTextField;\n@property (weak, nonatomic) IBOutlet QuickMobileTextField *nextMobileTextField;\n@property (weak, nonatomic) IBOutlet QuickMobileTextField *materialMobileTextField;\n@end\n\n@implementation ViewController\n\n- (void)viewDidLoad {\n    [super viewDidLoad];\n    // Do any additional setup after loading the view, typically from a nib.\n    self.mobileTextField.mobile = @\"1709\";\n    self.nextMobileTextField.textInsets = UIEdgeInsetsMake(4, 15, 4, 15);\n    self.materialMobileTextField.textInsets = UIEdgeInsetsMake(15, 15, 15, 15);\n}\n\n@end\n```\n## 关注我们 / Follow us\n  \n\u003ca href=\"https://itunes.apple.com/cn/app/iclock-一款满足-挑剔-的翻页时钟与任务闹钟/id1128196970?pt=117947806\u0026ct=com.github.pcjbird.QuickMobileTextField\u0026mt=8\"\u003e\u003cimg src=\"https://github.com/pcjbird/AssetsExtractor/raw/master/iClock.gif\" width=\"400\" title=\"iClock - 一款满足“挑剔”的翻页时钟与任务闹钟\"\u003e\u003c/a\u003e    \n  \n[![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=https://github.com/pcjbird/QuickMobileTextField)\n[![Twitter Follow](https://img.shields.io/twitter/follow/pcjbird.svg?style=social)](https://twitter.com/pcjbird)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpcjbird%2Fquickmobiletextfield","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpcjbird%2Fquickmobiletextfield","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpcjbird%2Fquickmobiletextfield/lists"}