## やりたいこと
struct
の中のfunc
の中のインスタンス
を参照したいです!
早急なご返信をお待ちしております...!????♂️????♂️
初歩的な質問ですが、しっかりと学ぶ所存ですのでご返答頂けますと幸いです。
## エラー
swift
1Type 'RepoTxt' has no member 'title'
## コード
func setupUI() { TitleLbl.text = RepoTxt.title // Type 'RepoTxt' has no member 'title' LanguageLbl.text = RepoTxt.language // Type 'RepoTxt' has no member 'title' StarsLbl.text = RepoTxt.stars // Type 'RepoTxt' has no member 'title' WatchersLbl.text = RepoTxt.watchers // Type 'RepoTxt' has no member 'title' ForksLbl.text = RepoTxt.forks // Type 'RepoTxt' has no member 'title' IssuesLbl.text = RepoTxt.issues // Type 'RepoTxt' has no member 'title' }
swift
1var selectedUser: SearchRootVC? 2 3... 4 5struct RepoTxt { 6 7 func repoTxt() { 8 guard let selectedUser = selectedUser else { return } 9 let repo = selectedUser.repo[selectedUser.repoToPass] 10 11 let title = repo[ApiKey.userName] as? String 12 13 let language = "Written in (repo["language"] as? String ?? "")" 14 let stars = "(repo["stargazers_count"] as? Int ?? 0) stars⭐️" 15 let watchers = "(repo["wachers_count"] as? Int ?? 0) watchers????" 16 let forks = "(repo["forks_count"] as? Int ?? 0) forks????" 17 let issues = "(repo["open_issues_count"] as? Int ?? 0) open issues????" 18 } 19 20} 21 22
質問は以上です。
お時間あるときに、ご返信頂けましたら幸いです????
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/15 21:26 編集
2020/09/16 11:01
2020/09/16 12:34