• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 如何在 OpenGL es 应用程序中使用键盘

[复制链接]
菜鸟教程小白 发表于 2022-12-13 01:23:39 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个使用键盘的 OpenGL ES 应用程序。当触摸屏幕时,我可以使键盘在屏幕上弹出。如果我是正确的,每按一次键,

- (BOOL)textFieldUITextField *)textField shouldChangeCharactersInRangeNSRange)range replacementStringNSString *)string 

应该被调用。但事实并非如此。该应用程序最初是一个纯 OpenGL Mac 游戏,我正在尝试制作 iOS 版本,所以我没有使用 Storyboard 。如果可能的话,我更喜欢以编程方式做所有事情。这是我的 ViewController.h 代码:

#import <GLKit/GLKit.h>
#import "KeyboardView.h"

@interface ViewController : GLKViewController {
    KeyboardView* keyBoard;
}
@end

ViewController.m 的相关部分:

- (void)viewDidLoad
{
[super viewDidLoad];
self.context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
if (!self.context) {
    NSLog(@"Failed to create ES context");
}
GLKView *view = (GLKView *)self.view;
view.context = self.context;
view.drawableDepthFormat = GLKViewDrawableDepthFormat24;

CGRect viewRect = CGRectMake(0, 0, 100, 100);
keyBoard = [[KeyboardView alloc] initWithFrame:viewRect];

[self setupGL];
}

- (void)touchesBeganNSSet *)touches withEventUIEvent *)event {

    [self.view addSubview:keyBoard];
    [keyBoard becomeFirstResponder];
}

KeyboardView.h:

#import <UIKit/UIKit.h>

@interface KeyboardView : UIView <UIKeyInput, UITextFieldDelegate> {
    UITextField *field;
}

KeyboardView.m:

#import "KeyboardView.h"
@implementation KeyboardView

- (id)initWithFrameCGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
    field = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 100, 10)];
    }
    return self;
}

- (void)insertTextNSString *)text {

}

- (void)deleteBackward {

}

- (BOOL)hasText {
    return YES;
}

- (BOOL)canBecomeFirstResponder {
    return YES;
}

- (BOOL)textFieldUITextField *)textField shouldChangeCharactersInRangeNSRange)range replacementStringNSString *)string {

NSLog(@"text: %@", textField.text);
NSString *newString = [textField.text stringByReplacingCharactersInRange:range withString:string];
if ([newString length] < 1) {
    return YES;
} else
    {
    textField.text = [newString length] > 1 ? [newString substringToIndex:1] : newString;
    [textField resignFirstResponder];
    return NO;
    }
}

@end

我需要能够在键盘处于事件状态时获取用户输入的每个字符。我承认,我有点困惑。我不确定我的方法是否正确,因此非常感谢您的帮助。



Best Answer-推荐答案


键盘文本输入不是通过UITextField

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string

确实是通过UIKeyInput

捕获的

- (void)insertText:(NSString *)text;

我正在使用软键盘在我的 GLKView (OpenGLES) 应用程序上捕获文本,我什至根本不需要任何 UITextField

供引用:

UIKeyInput Reference Doc

编辑:

你需要调用你的keyboardview的becomeFirstResponder来显示你的键盘并调用resignFirstResponder来隐藏它

您还需要覆盖 canBecomeFirstResponder 并返回 TRUE

关于ios - 如何在 OpenGL es 应用程序中使用键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25593606/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap