[uikit] UISplitView & UIStackView up to Xcode 9 beta 4 (#2425)

This commit is contained in:
Vincent Dondain 2017-08-03 13:33:46 -04:00 коммит произвёл GitHub
Родитель f29113552c
Коммит d63c88528e
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -2340,6 +2340,14 @@ namespace XamCore.UIKit {
[Export ("insertArrangedSubview:atIndex:")] [Export ("insertArrangedSubview:atIndex:")]
void InsertArrangedSubview (UIView view, nuint stackIndex); 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] [Static]
@ -14561,6 +14569,10 @@ namespace XamCore.UIKit {
[iOS (8,0)] [iOS (8,0)]
[Field ("UISplitViewControllerAutomaticDimension")] [Field ("UISplitViewControllerAutomaticDimension")]
nfloat AutomaticDimension { get; } nfloat AutomaticDimension { get; }
[iOS (11,0), TV (11,0)]
[Export ("primaryEdge", ArgumentSemantic.Assign)]
UISplitViewControllerPrimaryEdge PrimaryEdge { get; set; }
} }
[Since (3,2)] [Since (3,2)]