xcode - iOS 11 beta 9 empty keyboard keys -
i've got annoying bug while compiling app xcode 9 beta 6. occurs on simulator , on device. numeric keypad working.
any idea ?
this happens in gm seed well.
this caused internal ios 11 issue when following extension implemented. remove extension , keyboard back.
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
Comments
Post a Comment