ios - Which way of declaring IBoutlet is better -
I was wondering how IBOutlet is liked to be declared in subvules?
@ Property (weak, nonomatic) IBotlet UIPT Watch * MTV;
or
IBOutlet UITableView * mTableView;
I believe that one is better at first, but it is also not certain.
One better thing is to look at this: If you use the help editor and you press Ctrl + Drag a visible object directly into the code file, then it will add it in the same way
@property (weak, non-rational) IBOutlet UITableView * mTableView;
Comments
Post a Comment