Skip to content

Commit

Permalink
[uikit] UISplitView & UIStackView up to Xcode 9 beta 4 (#2425)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentDondain authored Aug 3, 2017
1 parent f291135 commit d63c885
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/uikit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2340,6 +2340,14 @@ interface UIStackView {

[Export ("insertArrangedSubview:atIndex:")]
void InsertArrangedSubview (UIView view, nuint stackIndex);

[iOS (11,0), TV (11,0)]
[Export ("setCustomSpacing:afterView:")]
void SetCustomSpacing (nfloat spacing, UIView arrangedSubview);

[iOS (11,0), TV (11,0)]
[Export ("customSpacingAfterView:")]
nfloat GetCustomSpacing (UIView arrangedSubview);
}

[Static]
Expand Down Expand Up @@ -14561,6 +14569,10 @@ interface UISplitViewController {
[iOS (8,0)]
[Field ("UISplitViewControllerAutomaticDimension")]
nfloat AutomaticDimension { get; }

[iOS (11,0), TV (11,0)]
[Export ("primaryEdge", ArgumentSemantic.Assign)]
UISplitViewControllerPrimaryEdge PrimaryEdge { get; set; }
}

[Since (3,2)]
Expand Down

0 comments on commit d63c885

Please sign in to comment.