Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[UIKit] Partial update to Xcode 11 Beta 1 and 2 - Part 1 of ?#6392

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
dalexsoto merged 9 commits intodotnet:xcode11fromdalexsoto:alex-xcode11-uikit
Jun 21, 2019
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
More feedback
  • Loading branch information
@dalexsoto
dalexsoto committedJun 21, 2019
commit5cb1fb1a79e7fcd981bae96053c056321569e3ed
2 changes: 1 addition & 1 deletionsrc/UIKit/UIEnums.cs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2372,7 +2372,7 @@ public enum UIContextMenuInteractionCommitStyle : long
}

[iOS (13,0), TV (13,0), NoWatch]
public enumUISceneSessionRole
public enumUIWindowSceneSessionRole
{
[Field ("UIWindowSceneSessionRoleApplication")]
Application,
Expand Down
44 changes: 15 additions & 29 deletionssrc/uikit.cs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -868,7 +868,7 @@ partial interface NSTextAttachment : NSTextAttachmentContainer, NSCoding
[Watch (6,0), TV (13,0), iOS (13,0)]
[Static]
[Export ("textAttachmentWithImage:")]
NSTextAttachmentFromImage (UIImage image);
NSTextAttachmentCreate (UIImage image);
}

[Protocol]
Expand DownExpand Up@@ -6845,32 +6845,26 @@ interface UIScene {
[Export ("activationConditions", ArgumentSemantic.Strong)]
UISceneActivationConditions ActivationConditions { get; set; }

[iOS (13,0)]
[Field ("UISceneWillConnectNotification")]
[Notification]
NSString WillConnectNotification { get; }

[iOS (13,0)]
[Field ("UISceneDidDisconnectNotification")]
[Notification]
NSString DidDisconnectNotification { get; }

[iOS (13,0)]
[Field ("UISceneDidActivateNotification")]
[Notification]
NSString DidActivateNotification { get; }

[iOS (13,0)]
[Field ("UISceneWillDeactivateNotification")]
[Notification]
NSString WillDeactivateNotification { get; }

[iOS (13,0)]
[Field ("UISceneWillEnterForegroundNotification")]
[Notification]
NSString WillEnterForegroundNotification { get; }

[iOS (13,0)]
[Field ("UISceneDidEnterBackgroundNotification")]
[Notification]
NSString DidEnterBackgroundNotification { get; }
Expand DownExpand Up@@ -6923,13 +6917,9 @@ interface UISceneDelegate {

[iOS (13,0), TV (13,0)]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
[DesignatedDefaultCtor]
interface UISceneActivationConditions : NSSecureCoding {

[Export ("init")]
[DesignatedInitializer]
IntPtr Constructor ();

[Export ("canActivateForTargetContentIdentifierPredicate", ArgumentSemantic.Copy)]
NSPredicate CanActivateForTargetContentIdentifierPredicate { get; set; }

Expand All@@ -6952,16 +6942,16 @@ interface UISceneConfiguration : NSCopying, NSSecureCoding {

[Static]
[Export ("configurationWithName:sessionRole:")]
UISceneConfigurationFromName ([NullAllowed] string name, [BindAs (typeof (UISceneSessionRole))] NSString sessionRole);
UISceneConfigurationCreate ([NullAllowed] string name, [BindAs (typeof (UIWindowSceneSessionRole))] NSString sessionRole);

[Export ("initWithName:sessionRole:")]
[DesignatedInitializer]
IntPtr Constructor ([NullAllowed] string name, [BindAs (typeof (UISceneSessionRole))] NSString sessionRole);
IntPtr Constructor ([NullAllowed] string name, [BindAs (typeof (UIWindowSceneSessionRole))] NSString sessionRole);

[NullAllowed, Export ("name")]
string Name { get; }

[BindAs (typeof (UISceneSessionRole))]
[BindAs (typeof (UIWindowSceneSessionRole))]
[Export ("role")]
NSString Role { get; }

Expand DownExpand Up@@ -7606,39 +7596,39 @@ interface UIImageSymbolConfiguration {

[Static]
[Export ("configurationWithScale:")]
UIImageSymbolConfigurationFromScale (UIImageSymbolScale scale);
UIImageSymbolConfigurationCreate (UIImageSymbolScale scale);

[Static]
[Export ("configurationWithPointSize:")]
UIImageSymbolConfigurationFromPointSize (nfloat pointSize);
UIImageSymbolConfigurationCreate (nfloat pointSize);

[Static]
[Export ("configurationWithWeight:")]
UIImageSymbolConfigurationFromWeight (UIImageSymbolWeight weight);
UIImageSymbolConfigurationCreate (UIImageSymbolWeight weight);

[Static]
[Export ("configurationWithPointSize:weight:")]
UIImageSymbolConfigurationFromPointSize (nfloat pointSize, UIImageSymbolWeight weight);
UIImageSymbolConfigurationCreate (nfloat pointSize, UIImageSymbolWeight weight);

[Static]
[Export ("configurationWithPointSize:weight:scale:")]
UIImageSymbolConfigurationFromPointSize (nfloat pointSize, UIImageSymbolWeight weight, UIImageSymbolScale scale);
UIImageSymbolConfigurationCreate (nfloat pointSize, UIImageSymbolWeight weight, UIImageSymbolScale scale);

[Static]
[Export ("configurationWithTextStyle:")]
UIImageSymbolConfigurationFromTextStyle ([BindAs (typeof (UIFontTextStyle))] NSString textStyle);
UIImageSymbolConfigurationCreate ([BindAs (typeof (UIFontTextStyle))] NSString textStyle);

[Static]
[Export ("configurationWithTextStyle:scale:")]
UIImageSymbolConfigurationFromTextStyle ([BindAs (typeof (UIFontTextStyle))] NSString textStyle, UIImageSymbolScale scale);
UIImageSymbolConfigurationCreate ([BindAs (typeof (UIFontTextStyle))] NSString textStyle, UIImageSymbolScale scale);

[Static]
[Export ("configurationWithFont:")]
UIImageSymbolConfigurationFromFont (UIFont font);
UIImageSymbolConfigurationCreate (UIFont font);

[Static]
[Export ("configurationWithFont:scale:")]
UIImageSymbolConfigurationFromFont (UIFont font, UIImageSymbolScale scale);
UIImageSymbolConfigurationCreate (UIFont font, UIImageSymbolScale scale);

[Export ("configurationWithoutTextStyle")]
UIImageSymbolConfiguration ConfigurationWithoutTextStyle { get; }
Expand DownExpand Up@@ -7697,13 +7687,9 @@ interface UIMenuElement : NSCopying {

[NoWatch, NoTV, iOS (13,0)]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
[DesignatedDefaultCtor]
interface UIPreviewParameters : NSCopying {

[Export ("init")]
[DesignatedInitializer]
IntPtr Constructor ();

[Export ("initWithTextLineRects:")]
IntPtr Constructor (NSValue [] textLineRects);

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp