iOS Development
teemomustdie
这个作者很懒,什么都没留下…
展开
-
Get textField of UISearchBar
Found a solution on StackOverflowlet searchTextField = self.searchBar.valueForKey("_searchField") as! UITextField原创 2015-04-13 14:09:02 · 263 阅读 · 0 评论 -
Useful extensions for UIView
UITextField ShakingFeels like typing wrong passcode on lock screenextension UITextField { func tm_shake() { let anim = CAKeyframeAnimation(keyPath: "position.x") anim.values = [0, 1原创 2015-04-13 11:06:19 · 318 阅读 · 0 评论 -
UITextView with placeholder
class TMTextView: UITextView { private var placeholderLabel: UILabel! func setPlaceholder(placeholderText: String) { NSNotificationCenter.defaultCenter().addObserver(self, selector: "text原创 2015-04-15 12:43:41 · 195 阅读 · 0 评论 -
Customized UIImageView that allows choosing photo from library or camera
protocol TMMutableImageViewDelegate { func imageSelected(editedImage: UIImage, originalImage: UIImage) }class TMMutableImageView: UIImageView, UIImagePickerControllerDelegate, UINavigationControlle原创 2015-04-16 10:09:26 · 251 阅读 · 0 评论 -
TMCoverFlowLayout
A cover flow implementation by subclassing UICollectionViewFlowLayoutOriginal found on here, thanks to solomidSF(He must be a dota player:p), and I copy it using Swift with a little modifications/** *原创 2015-04-20 15:40:44 · 272 阅读 · 0 评论 -
A Swift implementation for LTNavigationBar
// A Swift implementation for [LTNavigationBar](https://github.com/ltebean/LTNavigationBar "view on Github") extension UINavigationBar { private struct AssociatedKeys { static var overlayKe原创 2015-05-06 13:30:41 · 873 阅读 · 0 评论