Một mục mã nguồn mở trong kho dữ liệu GitHub của TopGit: andreamazz/AMTagListView, 757 sao, Objective-C. UIScrollView subclass that allows to add a list of highly customizable tags.
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
UIScrollView subclass that allows to add a list of highly customizable tags. You can customize colors, border radius, and the tail of the tag. Tags can be added in bulk or dynamically one by one. The newly inserted tag will automatically arrange itself inside the scrollview.
Screenshot
Setup with CocoaPods
Swift
pod 'AMTagListView'
When using a bridging header:
#import <AMTagListView.h>
When using dynamic frameworks:
@import AMTagListView
Usage
You can create a AMTagListView in your storyboard, or programmatically:
let tagListView = AMTagListView(frame: frame)
view.addSubview(tagListView)
Adding tags
Objective-C
// Add one tag
[self.tagListView addTag:@"my tag"];
// Add multiple tags
[self.tagListView addTags:@[@"my tag", @"some tag"]];
Swift
// Add one tag
tagListView.addTag("my tag")
// Add multiple tags
tagListView.addTags(["my tag", "some tag"])
Arranging tags
The tags are rearranged when you use the method calls listed above. You can also avoid the auto-rearrange by using the andRearrange: versions of such methods. This is useful when adding a big batch of tags. When you do so you must force the rearrange action manually:
[self.tagListView rearrangeTags];
You can also align the tags to the left or right by setting the tagAlignment property and calling rearrangeTags.
Appearance
Use the AMTagView's UIAppearance selectors to customize its appearance:
Objective-C
[[AMTagView appearance] setRadius:10];
Swift
AMTagView.appearance().radius = 10
Add a payload to a tag
You can add a payload to a single tag by using addTag:withUserInfo::
// Tag's corner radius
[[AMTagView appearance] setRadius:float]
// Tail's length
[[AMTagView appearance] setTagLength:float]
// Inner padding of the tag label
[[AMTagView appearance] setInnerTagPadding:float]
// Radius of the hole punched in the tail
[[AMTagView appearance] setHoleRadius:float]
// Text padding (x for horizontal padding, y for vertical)
[[AMTagView appearance] setTextPadding:CGPoint]
// Text font
[[AMTagView appearance] setTextFont:UIFont]
// The text color
[[AMTagView appearance] setTextColor:UIColor]
// Tag main color
[[AMTagView appearance] setTagColor:UIColor]
// Tag label background color
[[AMTagView appearance] setInnerTagColor:UIColor]
Delegate
This method asks his delegate if a given tag can be added. The method also shows the resulting content size.
To run the test suite install xcpretty gem, launch pod install inside the Tests folder, and run the rake task in the root.
Author
Andrea Mazzini. I'm available for freelance work, feel free to contact me.
Want to support the development of these free libraries? Buy me a coffee ☕️ via Paypal.
Contributors
Thanks to Orta Therox and everyone kind enough to submit a pull request.
MIT License
Copyright (c) 2017 Andrea Mazzini. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
andreamazz/AMTagListView có 757 sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/andreamazz/AMTagListView. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
andreamazz/AMTagListView có tag gì không?
Bản đồng bộ chưa ghi nhận topic GitHub nào cho andreamazz/AMTagListView. GitHub topics hiển thị ở thanh bên phải trang repo — đó là nơi đáng kiểm tra nhất.
andreamazz/AMTagListView có website riêng không?
TopGit chưa ghi nhận URL trang chủ cho andreamazz/AMTagListView. Phần README ở tab phía trên thường có link demo, hoặc xem mô tả GitHub của repo.
andreamazz/AMTagListView còn đang phát triển không?
Commit gần nhất trên andreamazz/AMTagListView là 6.7 năm trước (theo timestamp GitHub). Repo có 112 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
andreamazz/AMTagListView dùng license gì?
andreamazz/AMTagListView phát hành theo license MIT. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
andreamazz/AMTagListView viết bằng ngôn ngữ gì?
andreamazz/AMTagListView chủ yếu viết bằng Objective-C. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Đọc thêm về andreamazz/AMTagListView ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/andreamazz/AMTagListView là nguồn chính thức.
Đọc đầy đủ README ở tab phía trên.
Chưa chắc AMTagListView có hợp với bạn?
Để ChatGPT, Claude hoặc Perplexity tìm hiểu giúp — bấm bên dưới và xem AI nói gì về AMTagListView.