Initializer does not override a designated initializer from its superclass
1 min readJun 11, 2023
Last article, I solved an error.
However I encountered another error.
In this time, I will share how to solved the error I encountered using RxSwift 4 on Xcode 14.3.
This problem is caused by RxCocoa Version 4
I had never upgraded Rx library for long time and I guessed it is reason.
So I decided to upgrade Rx libraries according to this article.
My Podfile was like this.
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa', '~> 4.0'
I increases version of Rx libraries and installed Pods again.
pod 'RxSwift', '~> 5.0'
pod 'RxCocoa', '~> 5.0'
Rx libraries will be upgraded like this
And building is success without more modifications.