繁体   English   中英

如何在iOS8自定义键盘中弹出像键盘字符一样的弹出窗口?

[英]How to make popup like keyboard characters in iOS8 custom keyboard?

我想在iOS8自定义键盘中创建弹出窗口,如下图所示。

想在iOS8中创建这种类型的键盘

有些代码正在工作但无法访问键盘的外窗并发生问题,如下图2所示

iOS8自定义键盘中的问题

这就是我在自定义键盘中所做的工作

//adding pop up when character is tapped
- (void)addPopupToButton:(UIButton *)button
{


    CGRect frame,frame1;
    if(self.view.frame.size.width == 320)
    {
        //Keyboard is in Portrait
        frame = CGRectMake(0, -25, 28, 43);
        frame1=CGRectMake(0, 0, 28, 43);

    }
    else{
        //Keyboard is in Landscape
        frame = CGRectMake(3, -25, 35, 43);
        frame1=CGRectMake(0, 10, 35, 43);

    }
   //create pop up view
    UIView *popUp=[[UIView alloc]initWithFrame:frame];

    //create a label to add to pop up view
    UILabel *text = [[UILabel alloc] init];

    //set frame for the label and set label title
    [text setFrame:frame1];
    [text setText:button.titleLabel.text];
    text.textAlignment=NSTextAlignmentCenter;
    [text setFont:[UIFont boldSystemFontOfSize:30]];
    text.backgroundColor=[UIColor whiteColor];

    //add label as popup view's subview
    [popUp addSubview:text];

    //add pop up view as button's subview
    [button addSubview:popUp];

}


//remove Pop up view
-(void)endPopUpForButton:(UIButton*)button
{
    if ([button subviews].count > 1)
    {
        [[[button subviews] objectAtIndex:1] removeFromSuperview];
    }
}

在此输入图像描述

Apple App Extension编程指南

最后,无法在自定义键盘主视图的上边缘上方显示关键图稿,因为当您点按并按住顶行中的某个键时,系统键盘会在iPhone上显示。

所以看起来你不能在键盘框架外添加弹出窗口,所以codelgnitor的答案是你能做的最好的。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM