mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
24 lines
443 B
Objective-C
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
|