An intermediate iOS dev should have basic fundamental knowledge along with advanced and deep knowledge in languages, preferably in Swift.
For architecture most common, used and abused pattern is MVC which isn't well testable and reusable and to overcome the problem there are many popular solution like MVVM, MVP, VIPER, etc and it's up to you which one you'll follow and implement but I prefer to use MVVM along with Clean Architecture, as I found it to be more balanced, less complex and suitable for small to medium level project and easy to implement and follow for entire team. Refer to the following posts about MVVM and design pattern:
An intermediate iOS dev must able to follow a good design pattern and should follow SOLID principal and shouldn't violate any design pattern principal.In iOS these are “must knows” :
Refer to this tutorial, it talks about various design pattern.
Data persistency is very important for an app if the internet isn't available and the app doesn't work that's bad if the internet is slow and the app slow that's bad, calling API too many costing developer and user more data cost is bad. There are many solutions, based on your need you may choose your solution, having in mind security, speed, complexity, reusability, support.
A senior developer must know about Grand Central Dispatch, OperationQueue
The Code should be Optimized, there shouldn't be any memory leaks, retain cycles, Xcode provides Memory Graph Debugger and Instrument to investigate memory leaks and retain cycles.
Security must be ensured and Secret Management must be proper.
Modern apps are very reactive, to handle the reactivity we will need any of the Reactive frameworks. Knowledge of RxSwfit, ReactiveCocoa is unavoidable nowadays.
CI (Continuous integration), CD (Continuous Delivery) is a must have knowledge for an intermediate level developer. Tools like Fastlane, service like Jenkins, Bitrise, CircleCL.
Test-Driven Development (TDD) is a programming practice that instructs developers to write new code only if an automated test has failed. Writing codes that are tastable, writing Unit Testing is part of it. Writing Unit Tests with XCTest or with third party frameworks like Quick and Nimble.
An intermediate dev should follow any standard style guide like
For linting purpose tools like SwiftLint, for code formating SwiftFormat. Xiblint for linting storyboard, xib files and CodePecker to detect unused Swift code.
SwiftUI and Combine is the latest and most exciting thing in Apple Development ecosystem, these are excellent frameworks but not so many developers uses it in production as most of them need to support devices before iOS 13, but by the end of 2020, it should be the norm (hopefully). Follow this Cheat sheet to know about SwiftUI quickly.
Having a theoretical and practical sound knowledge on these topics probably will make you an Intermediate level dev and to become a senior dev you'll need some improvement on soft skills too.
Let's connect on Twitter or LinkedIn or read my other writings or visit me.