You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having an issue using storyboards with this library. I set the class of one of my VC's to JLTextViewController, but I have 2 separate views in my VC and I want to assign the textview to one of them. When I try to do this the view just loads with a black background without the textview. I think it has to do with the initializers in JLTextView but I am not sure how to fix it.
The text was updated successfully, but these errors were encountered:
The thing is that JLTextView needs to call super.init(frame: frame, textContainer: textContainer). Not sure how to achieve that.
Wild idea: Call super.init(frame: frame, textContainer: textContainer) from init(coder)
The one thing JLTextViewController does, except for being a ViewController, is setting scrollView insets on keyboard size updates. Not sure how that will work if the JLTextView is not at the bottom.
I am having an issue using storyboards with this library. I set the class of one of my VC's to JLTextViewController, but I have 2 separate views in my VC and I want to assign the textview to one of them. When I try to do this the view just loads with a black background without the textview. I think it has to do with the initializers in JLTextView but I am not sure how to fix it.
The text was updated successfully, but these errors were encountered: