WeView2
WeView2 copied to clipboard
WeView not showing up problems
Going through the different layouts, http://charlesmchen.github.io/WeView2/TutorialLayouts.html
The layouts seem to work with the use* methods (ie. useVerticalDefaultLayout:) but don't with the add * methods, ie addSubviewWithFillLayout:)
The tutorials seem incorrect. Please advise.
Please post your code.
You can add a layout with this syntax:
WeView *weview1 = [[WeView alloc] init];
[weview1 addSubviewWithFillLayout:subview2];
This layout will only apply to subview2, not the others subviews of this weview1.
Also, I've eliminated the use* methods.