가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

iOS 면접 질문과 답변

관련 차이점

Android vs iOS

Ques 16. What is Method Swizzling?

The process of changing the implementation of an existing domain, Method Swizzling, enables you to write that code that can be executed before or after the original method.

도움이 되었나요? Add Comment View Comments
 

Ques 17. When is the category used?

 It is used to add a set of related methods and to add additional methods in the Cocoa framework.

도움이 되었나요? Add Comment View Comments
 

Ques 18. What is the difference between Viewdidload and Viewdidappear?

Viewdidload:

  • It is called when it is loaded into memory.
  • Data can be loaded in Viewdidload if it is fairly static and likely to change.

Viewdidappear:

  • It is called when the view is visible and presented on the device.
  • You can perform any layout functions or draw in the UI.

도움이 되었나요? Add Comment View Comments
 

Ques 19. What does KVO stand for?

KVO means key-value observing, which enables a controller to observe changes to property value.

도움이 되었나요? Add Comment View Comments
 

Ques 20. Which JSON framework is supported by iOS (iPhone OS)?

  • SBJson framework is supported by iOS. It is a JSON parser and generator for Objective-C (Objective-C is the primary programming language we use when writing software for OS X and iOS. It is a superset of the C programming language and provides object-oriented capabilities and a dynamic runtime).
  • SBJson provides flexible APIs and additional control that makes JSON handling easy.

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.