I would like to ask about the difference between UIStackView() and UIStackView(frame: .zero) initialisers.
I would like to know which one of the two is triggered by UIStackView() by default.
@interface UIStackView : UIView
- (instancetype)initWithFrame:(CGRect)frame NS_DESIGNATED_INITIALIZER;
- (instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
Thank you so much.