/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
iOS/SharedCode/In-Game Controls/GameKeyboard.h
35 строк
815 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// // GameKeyboard.h // RobloxMobile // // Created by Ben Tkacheff on 10/23/12. // Copyright (c) 2012 ROBLOX. All rights reserved. // #pragma once #import "ControlComponent.h" #include "v8datamodel/Textbox.h" @interface GameKeyboard : ControlComponent <UITextFieldDelegate> { UITextField* textView; boost::shared_ptr<RBX::TextBox> currentTextBox; } - (id) init; - (void) dealloc; +(id) sharedInstance; -(void) hideKeyboard; -(bool) showKeyboard:(const char*) stringToShow; -(bool) showKeyboardWithTextBox:(boost::shared_ptr<RBX::TextBox>) newTextBox; -(void)keyboardWillChangeFrame:(NSNotification *) notification; -(void)keyboardWillHide:(NSNotification *) notification; -(NSString*) getText; -(void) setDefaultString:(NSString*) defaultString; -(void) setParentView:(UIView*) parentView; @end