我有 UITextField 类别。使用此类别 MFMailComposeViewController 将不起作用,当我呈现 MFMailComposeViewController 并出现错误时它会崩溃
Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN: [nan 24.5]'
@implementation UITextField (SomeCategory)
- (CGRect)textRectForBounds:(CGRect)bounds {
return CGRectInset( bounds , 30 , 5);
}
- (CGRect)editingRectForBounds:(CGRect)bounds {
return CGRectInset( bounds , 30 , 5);
}
@end
有人知道如何解决这个问题吗?