It would be nice if NSArrays had types associated with them. For example, this definition
|
@property (nonatomic, readonly) NSArray *coalescedJotStrokes; |
could change to
@property (nonatomic, readonly) NSArray<JotStroke*> *coalescedJotStrokes;
This would save some developers from needing to cast in Swift, and makes the property definitions more concrete.
It would be nice if
NSArrays had types associated with them. For example, this definitionAdonit-iOS-SDK/AdonitSDK.framework/Versions/A/Headers/JotStroke.h
Line 58 in 047b7ea
could change to
@property (nonatomic, readonly) NSArray<JotStroke*> *coalescedJotStrokes;This would save some developers from needing to cast in Swift, and makes the property definitions more concrete.