iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다. // network func requestMovieAPI() { let sessionConfig = URLSessionConfiguration.default let session = URLSession(configuration: sessionConfig) var components = URLComponents(string: "https://itunes.apple.com/search") let term = URLQueryItem(name: "term", value: "marvel") let media = URLQueryItem(name: "media", value: "movie") components?.queryIt..