Files
mcpe/platforms/ios/ShowKeyboardView.h
Brent afe875e4fa iOS Support (#113)
undefined
2024-01-22 17:22:41 +02:00

24 lines
443 B
Objective-C

//
// ShowKeyboardView.h
// Minecraft
//
// Created by Brent on 12/4/23.
//
//
#import <UIKit/UIKit.h>
#include "Minecraft.hpp"
@interface ShowKeyboardView : UIView<UITextFieldDelegate>
{
}
- (id)initWithMinecraft:(Minecraft*)app;
- (BOOL)hasText;
- (BOOL)canBecomeFirstResponder;
- (void)showKeyboard;
- (void)hideKeyboard;
- (void)textFieldDidChange:(NSNotification*)field;
- (void)textFieldShouldReturn:(UITextField *)field;
@end