mirror of
https://github.com/zydeco/minivmac4ios.git
synced 2024-11-15 19:08:42 +00:00
19 lines
351 B
Objective-C
19 lines
351 B
Objective-C
//
|
|
// ScreenView.h
|
|
// Mini vMac
|
|
//
|
|
// Created by Jesús A. Álvarez on 30/04/2016.
|
|
// Copyright © 2016-2018 namedfork. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ScreenView : UIView
|
|
|
|
@property (nonatomic, readonly) CGRect screenBounds;
|
|
@property (nonatomic, readonly) CGSize screenSize;
|
|
|
|
+ (instancetype)sharedScreenView;
|
|
|
|
@end
|