Tag: uikit
All the articles with the tag "uikit".
-
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...
-
How to detect current text while texting in UITextField
• 1 min readWhile typing a text in `UITextField`, we could get the current text with `UITextFieldDelegate`'s Instance Method `textFieldDidChangeSelection(_:)`. But this ...
-
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...