Sockets can be created as follows
@interface SearchViewController : UIViewController<UISearchBarDelegate> { IBOutlet UIView *viewSearchBar; IBOutlet UIScrollView *scrollVieww; IBOutlet UILabel *lblName; }
as well as
@interface SearchViewController : UIViewController<UISearchBarDelegate> { } @property(nonatomic, weak) IBOutlet UIScrollView *scrollVieww; @property(nonatomic, weak) IBOutlet UIView *viewSearchBar; @property(nonatomic, weak) IBOutlet UILabel *lblName; @end
I know nonatomic / atomic strong / weak in ARC, but in the first example, what is it? strong , weak , nonatomic or atomic .
Please explain or relate me to some details.
Raheel sadiq
source share