18 1 / 2013
Setting an Application Icon in iOS 5
Ukuran application icon pada iOS 5 terdiri atas:
- iPhone: Non-Retina display, 57×57 pixels.
- iPhone: Retina display, 114×114 pixels.
- iPad: Non-Retina display, 72×72 pixels.
- iPad: Retina display, 144×144 pixels.
RYL
22 6 / 2012
How to set border in UILabel?
You can set border in UILabel using this code:
yourLabel.layer.borderColor = [UIColor blackColor].CGColor;
yourLabel.layer.borderWidth = 3.0;
Happy coding!
RYL