Slide 4
Slide 4 text
func chooseUiDevelopMethod(when situation: Situation) -> UIDevelopMethod {
switch situation {
case .developScreenTransition, .developSimpleView:
return .byStoryboard
case .developComplexView, .developLooksLikeOtherPlatformUI:
return .byNibFilesAndCodess
}
}