Tag:ui-development
All the articles with the tag "ui-development".
How to round corners specifically on a UIView
•1 min readTo round a corner on a UIView, you can set the layer's `cornerRadius` value. Simply use it like this:

How to create a view controller from xib
•2 min readCreating a new view controller was easy. I've used to create a view controller from Storyboard, and instantiated in code. Although this way is easy, so many ...
Add image to string in UILabel using NSTextAttachment
•1 min readSometimes you need to add image to a string in a `UILabel`, but using `UIImageView` gets complicated and sometimes not efficient. But Apple provides a simple...

Add Refresh Control to Collection View
•1 min readI've been currently rebuilding a project that I'm working on, and there were some UI issues when refreshing datas. `UIRefreshControl` was implied for pulltor...