AutoLayout Autolayout Tricks - Part 2 Create nested views structure with Autolayout. (Based on the idea and implementation based on iOS - Autolayout Demystified) While going through Erica Sadun's above mentioned book, I came across interesting problem on how to arrange nested views into each other making beautiful structure. It was quite a challenge for me
AutoLayout Autolayout Tricks - Part 1 Height adjusting UILabel with autolayout in iOS. We all know that UILabels have intrinsic content size which allows them to adjust their height based on the content size. Which means you can add UILabel to your views, set numberOfLines to zero, set appropriate height constraint and see in action that
Twitter iOS - Social Login - Twitter I found dealing with Twitter SignIn interaction quite challenging until I found out about STTwitter Objective-C framework to deal login and sharing tasks related to Twitter. You can install it by adding line pod 'STTwitter', '~> 0.2' to podfile and running pod install command Here's how you can add
iOS Custom Selected view for UITableViewCell How to make custom selected background view for UITableViewCell. Recently I came across interesting problem where we were supposed to show multiple choice question format in UITableView. When user selected a cell, the bullet image for that cell would get toggled on/off based on select/deselect action. However, what