-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Toolbar doesn't show up #43
Comments
I have the same issue... |
I tried on both iOS7 and iOS6 and can't reproduce the issue. RichTextEditor *rte = [[RichTextEditor alloc] initWithFrame:CGRectMake(50, 50, 400, 400)];
[self.view addSubview:rte]; Thanks |
Did you try on iOS 7.1? |
Same here in my iPad project (iOS 7.1) |
I think this is actually CocoaPod specific, because when I replaced the pod with the code from this repo (commenting out 'iOS-Rich-Text-Editor' and including 'WEPopover') the toolbar appeared correctly. |
Thanks, will look into it and update the cocoapod |
For some reason the toolbar doesn't show up when I create the rich text editor programmatically instead of using an IBOutlet. I'm using iOS 7.1 by the way.
textEditor = [[RichTextEditor alloc] initWithFrame:self.view.bounds]
textEditor.delegate = self
textEditor.dataSource = self
self.view.addSubview(textEditor)
The text was updated successfully, but these errors were encountered: