Saturday 23 July 2011

How to set rounded corner border of UIImageview

Steps to implements:

1] First add "Quardcore" framework and import it.
2] In view did load method write following code snippet
  • imgview.layer.borderwidth=5.0;
  • imgview.layer.cornerradios=10.0;

iOS interview questions

What is the difference between underscore and self (i.e self . xx and _xx)  ? What is property? What is the difference between weak and ...