BelledonneCommunications / linphone-iphone

Linphone is a free VoIP and video softphone based on the SIP protocol. Mirror of linphone-iphone (git://git.linphone.org/linphone-iphone.git)
http://linphone.org
GNU General Public License v3.0
581 stars 344 forks source link

IOS 13, xcode 11: error: designated initializer should only invoke a designated initializer on 'super' #579

Open wirelessmundi opened 5 years ago

wirelessmundi commented 5 years ago

logs: error1.txt

Hope someone great soul will help

becklo commented 4 years ago

Solved it by replacing:

[UINavigationControllerEx removeBackground:rootViewController.view];
    return [self initWithRootViewController:rootViewController];

with

[UINavigationControllerEx removeBackground:rootViewController.view];
    self = [super initWithRootViewController:rootViewController];
    if (self) {
    }
    return self;