romaonthego / REFrostedViewController

iOS 7/8 style blurred view controller that appears on top of your view controller.
MIT License
2.97k stars 494 forks source link

Cant add uitextfiled or uisearchbar.. ISSUE #134

Open siddharthadeb opened 9 years ago

siddharthadeb commented 9 years ago

Cant add uitextfiled or uisearchbar.. in side bar menu.. its not able come up keyboard also. its show disable. Please fix it. or tell me how to fix. Urgent.

prathmeshranaut commented 9 years ago

Added a UITextView easily.

 UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 280, 124)];
        textView.returnKeyType = UIReturnKeyDone;
        textView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;

screen shot 2015-05-15 at 4 27 34 pm