Anyone know how to add a background drop view to a UITextfield? I have tried this code, but this adds a shadow to the text not the UITextfield view.
self.txtFirstName.layer.shadowOpacity = 1.0;
self.txtFirstName.layer.shadowRadius = 0.0;
self.txtFirstName.layer.shadowColor = [UIColor blackColor].CGColor;
self.txtFirstName.layer.shadowOffset = CGSizeMake(0.0, -1.0);