gpt4 book ai didi

iOS 11 beta 9 空键盘按键

转载 作者:行者123 更新时间:2023-11-29 00:12:09 24 4
gpt4 key购买 nike

我在使用 Xcode 9 beta 6 编译我的应用程序时遇到了这个烦人的错误。它发生在模拟器和设备上。数字键盘正在工作。 default keyboard

numeric

有什么想法吗?

最佳答案

这也发生在转基因种子中。

这是由实现以下扩展时的内部 iOS 11 问题引起的。移除扩展,键盘又回来了。

UIView+TintColor.h

#ifndef UIView_TintColor_h
#define UIView_TintColor_h

#import <UIKit/UIKit.h>
@interface UIView (TintColor)
@property (nonatomic,retain) UIColor* tintColor;
@end
#endif /* UIView_TintColor_h */

UIView+TintColor.m

#import <Foundation/Foundation.h>
#import "UIView+TintColor.h"
#import <objc/runtime.h>

static char const * const tintColorKey = "tintColorKey";

@implementation UIView (TintColor)

-(UIColor*)tintColor
{
return objc_getAssociatedObject(self , tintColorKey);
}

-(void)setTintColor:(UIColor *)tintColor
{
objc_setAssociatedObject(self, tintColorKey, tintColor, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

@end

关于iOS 11 beta 9 空键盘按键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46172570/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com