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

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -