@interface WKWindowFeatures : NSObject
/*! @abstract BOOL. Whether the menu bar should be visible. nil if menu bar visibility was not specified.
*/
@property (nullable, nonatomic, readonly) NSNumber *menuBarVisibility;
/*! @abstract BOOL. Whether the status bar should be visible. nil if status bar visibility was not specified.
*/
@property (nullable, nonatomic, readonly) NSNumber *statusBarVisibility;
/*! @abstract BOOL. Whether toolbars should be visible. nil if toolbar visibility was not specified.
*/
@property (nullable, nonatomic, readonly) NSNumber *toolbarsVisibility;
/*! @abstract BOOL. Whether the containing window should be resizable. nil if resizability was not specified.
*/
@property (nullable, nonatomic, readonly) NSNumber *allowsResizing;
/*! @abstract CGFloat. The x coordinate of the containing window. nil if the x coordinate was not specified.
*/
@property (nullable, nonatomic, readonly) NSNumber *x;
/*! @abstract CGFloat. The y coordinate of the containing window. nil if the y coordinate was not specified.
*/
@property (nullable, nonatomic, readonly) NSNumber *y;
/*! @abstract CGFloat. The width coordinate of the containing window. nil if the width was not specified.
*/
@property (nullable, nonatomic, readonly) NSNumber *width;
/*! @abstract CGFloat. The height coordinate of the containing window. nil if the height was not specified.
*/
@property (nullable, nonatomic, readonly) NSNumber *height;
@end
WKWindowFeatures
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。