以下の通りにやったが、エラーがでた。他の人がやったら上手く行ったので、自分のコードが間違っているが、どこが間違っているのかわからない。
apiは一部隠しています。
回答よろしくお願いします。
youtubeのURL https://youtu.be/0rKgs9D9qSg
import SwiftUI import SwiftyJSON import SDWebImageSwiftUI import WebKit struct CotentView: View { @ObservedObject var list = getData() var body: some View { NavigationView{ List(list.datas){i in NavigationLink(destination: webView(url: i.url) .navigationBarTitle{"",displayMode: .Inline)) { HStack(spacing: 15){ VStack(alignment: .leading, spacing: 10){ Text(i.title).fontWeight(.heavy) Text(i.desc).lineLimit(2) } if i.image != ""{ WebImage(url: URL(string: i.image)!, options: .highPriority, context: nil) .resizable() .frame(width: 110, height: 135) .cornerRadius(20) }.padding(.vertical, 15) }.navigationBarTitle("Headlines") } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } struct detaType : Identifiable { var id : String var title : String var desc : String var url : String var image : String } class getDate : ObservableObject{ @Published var detas = [detaType]() init() { let source = "https://newsapi.org/v2/top-headlines?country=in&apiKey=" let url = URL(string: source)! let session = URLSession(configuration: .default) session.dataTask(with: url) { (data, , err) in if err != nil{ print((err?.localizedDescription)!) return } let json = try! JSON(data: data!) for i in json["articles"]{ let title = i.1["title"].stringValue let description = i.1["description"].stringValue let url = i.1["url"].stringValue let image = i.1["urlToImage"].stringValue let id = i.1["publishedAT"].stringValue DispatchQueue.main.async { self.datas.append(dataType(id: id, title: title, desc: description, url:url, image: image )) } }.resume() } } struct webView : UIViewRepresentable { var url: String func makeUIView(context: UIViewRepresentableContext<webView>)->WKWebView{ let view = WKWebView() view.load(URLRequest(url: URL(string: url)!)) return view } func updateUIView(_ uiView: WKWebView, context: UIViewRepresentableContext<webView>) { } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。