[Appkit] Adds NullAllowed to NSTableCellView.ObjectValue (#3793)

Fixes xamarin/xamarin-macios#3792

`null` is allowed in `NSTableCellView.ObjectValue` property according to header definition:

```
@property (nullable, strong) id objectValue;
```
This commit is contained in:
Alex Soto 2018-03-21 07:28:18 -06:00
Родитель a04b482273
Коммит cc41ecd60c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -16431,7 +16431,7 @@ namespace AppKit {
get; set;
}
[Export ("objectValue", ArgumentSemantic.Retain)]
[Export ("objectValue", ArgumentSemantic.Retain), NullAllowed]
NSObject ObjectValue {
get; set;
}