Hello everyone,
The native API is not working in ccards iOs, so i try to implement native textfields in swift. Until then everything is fine, but when I click on my textfield (and keyboard appears), the screen (corona view actually) turns black behind the textfield. Does anyone ever faced this problem? Or is it a CoronaCards bug?
I did my tests on iphone 4s + ios 8.1.
Here is my swift code, very simple:
var textField = UITextField(frame: CGRectMake(40.00,180.00, 230.00, 50.00)) textField.backgroundColor = UIColor.whiteColor() textField.borderStyle = UITextBorderStyle.Line self.coronaView.addSubview(textField)