mirror of
https://github.com/zydeco/minivmac4ios.git
synced 2024-11-17 16:06:18 +00:00
20 lines
432 B
Objective-C
20 lines
432 B
Objective-C
//
|
|
// ViewController.h
|
|
// Mini vMac
|
|
//
|
|
// Created by Jesús A. Álvarez on 27/04/2016.
|
|
// Copyright © 2016 namedfork. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ScreenView.h"
|
|
#import "KBKeyboardView.h"
|
|
|
|
@interface ViewController : UIViewController <KBKeyboardViewDelegate>
|
|
|
|
@property (weak, nonatomic) IBOutlet ScreenView *screenView;
|
|
@property (nonatomic, getter=isKeyboardVisible) BOOL keyboardVisible;
|
|
|
|
@end
|
|
|