hanspinckaers / GrowingTextView

[UNMAINTAINED] An UITextView which grows/shrinks with the text and starts scrolling when the content reaches a certain number of lines. Similar to the one Apple uses in the SMS-app. See blog-post for a small screencast.
http://www.hanspinckaers.com/multi-line-uitextview-similar-to-sms
MIT License
2.05k stars 453 forks source link

Crash in iOS9.1 #121

Open Nandulucky opened 8 years ago

Nandulucky commented 8 years ago

Hi ,

in main.m file _int retVal = UIApplicationMain(argc, argv, nil, nil); _ I got an error 'Application windows are expected to have a root view controller at the end of application launch'

Please help me. Thanks in Advance Nandu K.

proxyblue commented 8 years ago

In GrowingTextViewAppDelegate.m - replace:

    [window addSubview:viewController.view];

with this: window.rootViewController = viewController;