Hello,
I'd really appreciate some help on this, here is what I've done so far:
1) Created a window-based application
2) Added a UIView subclass ( UICustom.m + UICustom.h )
3) declared an outlet in .h ( IBOutlet UIView *view; )
4) Launch IB, add a view to Main Window.
5) Associated this view with UICustom ( using inspector )
Now I'm trying to connect the outlet 'view' to the view I added using IB.
But sadly, I can't, whatever I tried.
Does the logic fail here or I'm doing something wrong?
Note: I Want to connect the outlet with the view so I can get the values of width + height of the view.
I hope I explained myself fine. Thanks in advance
I'd really appreciate some help on this, here is what I've done so far:
1) Created a window-based application
2) Added a UIView subclass ( UICustom.m + UICustom.h )
3) declared an outlet in .h ( IBOutlet UIView *view; )
4) Launch IB, add a view to Main Window.
5) Associated this view with UICustom ( using inspector )
Now I'm trying to connect the outlet 'view' to the view I added using IB.
But sadly, I can't, whatever I tried.
Does the logic fail here or I'm doing something wrong?
Note: I Want to connect the outlet with the view so I can get the values of width + height of the view.
I hope I explained myself fine. Thanks in advance