앱 메인 화면의 타이틀값에 대한 아이콘 값, http 통신 상태 코드 등에 사용된다.
import UIKit
var topTitle = ("메인화면", "mainIcon.png")
topTitle.0 // 메인화면
topTitle.1 // mainIcon.png
// http status code
// Type Annotation 가능
var httpStatus1 = (code : 200, description : "Success")
var httpStatus2 = (code : 404, description : "Page Not Found")
httpStatus1.code // 200
httpStatus1.description // Success
httpStatus2.code // 404
httpStatus2.description // Page Not Found