Skip to content

Commit

Permalink
Update based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelkang committed Sep 21, 2021
1 parent 38928db commit fc58ff1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/intents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6957,6 +6957,7 @@ interface INSetSeatSettingsInCarIntentResponse {

[Watch (8,0), NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[BaseType (typeof(INIntent))]
[DisableDefaultCtor]
interface INShareFocusStatusIntent
{
[Export ("initWithFocusStatus:")]
Expand Down Expand Up @@ -12026,9 +12027,10 @@ interface INFocusStatus : NSCopying, NSSecureCoding
{
[Export ("initWithIsFocused:")]
[DesignatedInitializer]
IntPtr Constructor ([NullAllowed] NSNumber isFocused);
IntPtr Constructor ([NullAllowed] [BindAs (typeof (bool?))] NSNumber isFocused);

[Export ("isFocused", ArgumentSemantic.Copy)]
[BindAs (typeof (bool?))]
[NullAllowed]
NSNumber IsFocused { get; }
}
Expand Down

0 comments on commit fc58ff1

Please sign in to comment.