[UIKit] Update bindings to Xcode 12 Beta 4 (#9331)

This commit is contained in:
Alex Soto 2020-08-07 22:17:29 -04:00 коммит произвёл GitHub
Родитель c57c47268f
Коммит a292a2ea10
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 52 добавлений и 41 удалений

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

@ -3143,4 +3143,14 @@ namespace UIKit {
Minimal = 2,
}
[Watch (7,0), TV (14,0), iOS (14,0)]
[Flags]
[Native]
public enum NSLineBreakStrategy : ulong {
None = 0x0,
PushOut = 1uL << 0,
HangulWordPriority = 1uL << 1,
Standard = 0xffff,
}
}

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

@ -586,6 +586,10 @@ namespace UIKit {
[iOS (9,0)]
[Export ("allowsDefaultTighteningForTruncation")]
bool AllowsDefaultTighteningForTruncation { get; [NotImplemented] set; }
[Watch (7,0), TV (14,0), iOS (14,0)]
[Export ("lineBreakStrategy")]
NSLineBreakStrategy LineBreakStrategy { get; [NotImplemented] set; }
}
[ThreadSafe]
@ -658,6 +662,10 @@ namespace UIKit {
[Export ("allowsDefaultTighteningForTruncation")]
bool AllowsDefaultTighteningForTruncation { get; set; }
[Watch (7,0), TV (14,0), iOS (14,0)]
[Export ("lineBreakStrategy")]
NSLineBreakStrategy LineBreakStrategy { get; set; }
[iOS (9,0)]
[Export ("addTabStop:")]
void AddTabStop (NSTextTab textTab);
@ -3882,6 +3890,7 @@ namespace UIKit {
[Export ("reuseIdentifier", ArgumentSemantic.Copy)]
NSString ReuseIdentifier { get; }
[RequiresSuper]
[Export ("prepareForReuse")]
void PrepareForReuse ();
@ -8728,6 +8737,10 @@ namespace UIKit {
[Export ("allowsDefaultTighteningForTruncation")]
bool AllowsDefaultTighteningForTruncation { get; set; }
[Watch (7,0), TV (14,0), iOS (14,0)]
[Export ("lineBreakStrategy", ArgumentSemantic.Assign)]
NSLineBreakStrategy LineBreakStrategy { get; set; }
[TV (12, 0), NoWatch, NoiOS]
[Export ("enablesMarqueeWhenAncestorFocused")]
bool EnablesMarqueeWhenAncestorFocused { get; set; }
@ -21909,6 +21922,11 @@ namespace UIKit {
[Export ("listSidebarCellConfiguration")]
UIBackgroundConfiguration ListSidebarCellConfiguration { get; }
[NoWatch, NoTV]
[Static]
[Export ("listAccompaniedSidebarCellConfiguration")]
UIBackgroundConfiguration ListAccompaniedSidebarCellConfiguration { get; }
[Export ("updatedConfigurationForState:")]
UIBackgroundConfiguration GetUpdatedConfiguration (IUIConfigurationState state);
@ -21963,6 +21981,9 @@ namespace UIKit {
[Export ("displayedState", ArgumentSemantic.Assign)]
UICellAccessoryDisplayedState DisplayedState { get; set; }
[Export ("hidden")]
bool IsHidden { [Bind ("isHidden")] get; set; }
[Export ("reservedLayoutWidth")]
nfloat ReservedLayoutWidth { get; set; }
@ -21986,6 +22007,9 @@ namespace UIKit {
[BaseType (typeof (UICellAccessory))]
interface UICellAccessoryDelete {
[NullAllowed, Export ("backgroundColor", ArgumentSemantic.Strong)]
UIColor BackgroundColor { get; set; }
[NullAllowed, Export ("actionHandler", ArgumentSemantic.Copy)]
Action ActionHandler { get; set; }
}
@ -21994,6 +22018,9 @@ namespace UIKit {
[BaseType (typeof (UICellAccessory))]
interface UICellAccessoryInsert {
[NullAllowed, Export ("backgroundColor", ArgumentSemantic.Strong)]
UIColor BackgroundColor { get; set; }
[NullAllowed, Export ("actionHandler", ArgumentSemantic.Copy)]
Action ActionHandler { get; set; }
}
@ -22010,6 +22037,8 @@ namespace UIKit {
[BaseType (typeof (UICellAccessory))]
interface UICellAccessoryMultiselect {
[NullAllowed, Export ("backgroundColor", ArgumentSemantic.Strong)]
UIColor BackgroundColor { get; set; }
}
[NoWatch, NoTV, iOS (14,0)]
@ -22494,6 +22523,16 @@ namespace UIKit {
[Export ("sidebarSubtitleCellConfiguration")]
UIListContentConfiguration SidebarSubtitleCellConfiguration { get; }
[NoTV]
[Static]
[Export ("accompaniedSidebarCellConfiguration")]
UIListContentConfiguration AccompaniedSidebarCellConfiguration { get; }
[NoTV]
[Static]
[Export ("accompaniedSidebarSubtitleCellConfiguration")]
UIListContentConfiguration AccompaniedSidebarSubtitleCellConfiguration { get; }
[NoTV]
[Static]
[Export ("sidebarHeaderConfiguration")]
@ -22595,6 +22634,9 @@ namespace UIKit {
[Export ("reservedLayoutSize", ArgumentSemantic.Assign)]
CGSize ReservedLayoutSize { get; set; }
[Export ("accessibilityIgnoresInvertColors")]
bool AccessibilityIgnoresInvertColors { get; set; }
}
[NoWatch, TV (14,0), iOS (14,0)]

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

@ -16,23 +16,3 @@
!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound
!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound
!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound
!missing-enum! NSLineBreakStrategy not bound
!missing-requires-super! UICollectionReusableView::prepareForReuse is missing an [RequiresSuper] attribute
!missing-selector! +UIBackgroundConfiguration::listAccompaniedSidebarCellConfiguration not bound
!missing-selector! +UIListContentConfiguration::accompaniedSidebarCellConfiguration not bound
!missing-selector! +UIListContentConfiguration::accompaniedSidebarSubtitleCellConfiguration not bound
!missing-selector! NSMutableParagraphStyle::lineBreakStrategy not bound
!missing-selector! NSMutableParagraphStyle::setLineBreakStrategy: not bound
!missing-selector! NSParagraphStyle::lineBreakStrategy not bound
!missing-selector! UICellAccessory::isHidden not bound
!missing-selector! UICellAccessory::setHidden: not bound
!missing-selector! UICellAccessoryDelete::backgroundColor not bound
!missing-selector! UICellAccessoryDelete::setBackgroundColor: not bound
!missing-selector! UICellAccessoryInsert::backgroundColor not bound
!missing-selector! UICellAccessoryInsert::setBackgroundColor: not bound
!missing-selector! UICellAccessoryMultiselect::backgroundColor not bound
!missing-selector! UICellAccessoryMultiselect::setBackgroundColor: not bound
!missing-selector! UILabel::lineBreakStrategy not bound
!missing-selector! UILabel::setLineBreakStrategy: not bound
!missing-selector! UIListContentImageProperties::accessibilityIgnoresInvertColors not bound
!missing-selector! UIListContentImageProperties::setAccessibilityIgnoresInvertColors: not bound

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

@ -18,20 +18,3 @@
!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound
!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound
!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound
!missing-enum! NSLineBreakStrategy not bound
!missing-requires-super! UICollectionReusableView::prepareForReuse is missing an [RequiresSuper] attribute
!missing-selector! NSMutableParagraphStyle::lineBreakStrategy not bound
!missing-selector! NSMutableParagraphStyle::setLineBreakStrategy: not bound
!missing-selector! NSParagraphStyle::lineBreakStrategy not bound
!missing-selector! UICellAccessory::isHidden not bound
!missing-selector! UICellAccessory::setHidden: not bound
!missing-selector! UICellAccessoryDelete::backgroundColor not bound
!missing-selector! UICellAccessoryDelete::setBackgroundColor: not bound
!missing-selector! UICellAccessoryInsert::backgroundColor not bound
!missing-selector! UICellAccessoryInsert::setBackgroundColor: not bound
!missing-selector! UICellAccessoryMultiselect::backgroundColor not bound
!missing-selector! UICellAccessoryMultiselect::setBackgroundColor: not bound
!missing-selector! UILabel::lineBreakStrategy not bound
!missing-selector! UILabel::setLineBreakStrategy: not bound
!missing-selector! UIListContentImageProperties::accessibilityIgnoresInvertColors not bound
!missing-selector! UIListContentImageProperties::setAccessibilityIgnoresInvertColors: not bound

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

@ -1,4 +0,0 @@
!missing-enum! NSLineBreakStrategy not bound
!missing-selector! NSMutableParagraphStyle::lineBreakStrategy not bound
!missing-selector! NSMutableParagraphStyle::setLineBreakStrategy: not bound
!missing-selector! NSParagraphStyle::lineBreakStrategy not bound