## 「クラス」のデータ型は何を表しているのか。
自分で書いたコードではなく、分からない点があります。
SearchRootVC
というクラスのデータ型について、質問させてください。
swift
1var selectedUser: SearchRootVC?
- クラスのデータ型は何を表しているのか。
- クラスのデータ型を指定した変数
selectedUser
は、どのような特性を持つのか。 - オプショナル型
?
を外した場合、どのような初期値を設定すれば良いのか。
(例 :String = ""
, :Int = 0
, : SearchRootVC = ここは何ですか
)
## コード
SearchRootVC
のコードを添付しておきます。
SearchRootVC
1 2import UIKit 3 4class SearchRootVC: UITableViewController, UISearchBarDelegate { 5 6 @IBOutlet weak var searchBar: UISearchBar! 7 8 var repoToPass: Int = 0 9 10 var task: URLSessionTask? 11 var repo: [[String: Any]] = [] 12 13 override func viewDidLoad() { 14 super.viewDidLoad() 15 setupTableView() 16 tableViewBgImage() 17 } 18 19 // 以下3つ、元から用意されているsearchBar関数名なので、変更NG。 20 func searchBarShouldBeginEditing(_ searchBar: UISearchBar) -> Bool { 21 searchBar.text = "" 22 searchBar.autocapitalizationType = .none // 検索時、先頭を小文字で始める 23 return true 24 } 25 26 func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) { 27 task?.cancel() 28 } 29 30 func searchBarSearchButtonClicked(_ searchBar: UISearchBar) { 31 // キーボード非表示 32 searchBar.resignFirstResponder() 33 34 // MARK: - 不用意なIUOを削除。 35 // let query = searchBar.text! 36 guard let query = searchBar.text, query.isEmpty == false else { 37 print("検索文字がない") 38 return 39 } 40 41 // word, completion, errorHandler 3つの引数をメソッドに渡す。 42 task = SearchAPI.getRandomRepoUrlSession(query, completionHandler: { items in 43 self.repo = items 44 DispatchQueue.main.async { 45 // UIを更新する処理 46 self.tableView.reloadData() 47 } 48 }, errorHandler: { error in 49 // オプショナルチェイニング 50 debugPrint(error?.localizedDescription ?? "") 51 }) 52 } 53 54 // MARK: - オプショナルチェイニング 55 // 値があるとアンラップ。但し、それに続くプロパティやメソッドの戻り値は「オプショナル型」になる。(-> nilの場合 nil を返すため) 56 // nilの場合 nil を返す。それに続く処理をすべてキャンセル (-> なので安全) 57 58 // MARK: - ?? 59 // 「??」... nil結合演算子 (nil-coalescing) 60 // A ?? B ... Aに値があるとAをアンラップ。Aが nil だとBを返す。 61 62 func setupTableView() { 63 // delegateは、delegatorに処理を委譲された側 64 searchBar.delegate = self 65 } 66 67 // MARK: - TableView で背景画像を表示 68 func tableViewBgImage() { 69 let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: self.tableView.frame.width, height: self.tableView.frame.height)) 70 let image = UIImage(named: "bg_right1") 71 72 imageView.image = image 73 imageView.alpha = 0.8 74 75 self.tableView.backgroundView = imageView 76 } 77 78 // MARK: - // Segueが実行される前に呼び出される 79 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 80 // Segueの識別子確認 81 if segue.identifier == Segues.toProfileDetail { 82 // 遷移先ViewCntrollerの取得 83 if let detailVC = segue.destination as? ProfileDetailVC { 84 // 値の設定 85 detailVC.selectedUser = self 86 } 87 } 88 } 89} 90 91 92// extension 93 94extension SearchRootVC { 95 96 override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 97 return repo.count 98 } 99 100 override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 101 102 // dequeueReusableCellで、セルを再利用。 103 // nilを返さない為、オプショナルバインディングは不要。 104 105 // MARK: - セルの再利用 106 let cell = tableView.dequeueReusableCell(withIdentifier: "RepositoryCell", for: indexPath) 107 108 let userRepo = repo[indexPath.row] 109 110 // MARK: - nil回避しつつ、nilの場合は「--None--」を表示 111 if let userName = userRepo[ApiKey.userName] as? String { 112 cell.textLabel?.text = userName 113 } else { 114 cell.textLabel?.text = "--None--" 115 } 116 // カスタムクラスの参照を修正。(-> detailTextLabelの表示) 117 if let language = userRepo[ApiKey.language] as? String { 118 cell.detailTextLabel?.text = language 119 } else { 120 cell.detailTextLabel?.text = "--None--" 121 } 122 123 return cell 124 } 125 126 override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 127 repoToPass = indexPath.row 128 performSegue(withIdentifier: Segues.toProfileDetail, sender: self) 129 } 130} 131 132// MARK: - Cellの備考 (registerとは?) 133// register() ... 用意したviewをcellのテンプレートとして登録するメソッドであり、cellの再利用に必要。 134// Right Detail を表示は、コード不可 StoryBoard可なので、register()は使用しない。 135 136// MARK: - クラスメソッドとして定義 137class SearchAPI { 138 // staticとして宣言すると、クラスのインスタンス化が不要。 139 static func getRandomRepoUrlSession(_ query: String, completionHandler completion: @escaping ([[String: Any]]) -> (), errorHandler: @escaping (Error?) -> ()) -> URLSessionTask? { 140 141 // MARK: - 下記の部分はメソッドに渡す前に処理しておく 142 // let word = searchBar.text! 143 // guard let word = searchBar.text, word.isEmpty == false else { 144 // print("検索文字がない") 145 // return 146 // } 147 148 let repositoryUrl = githubBaseUrl + query 149 150 guard let url = URL(string: repositoryUrl) else { return nil } 151 152 let task = URLSession.shared.dataTask(with: url) { (data, responce, error) in 153 154 guard error == nil else { 155 // MARK: - 処理をクロージャに任せる 156 errorHandler(error) 157 return 158 } 159 160 guard let data = data else { return } 161 162 // try!は、例外が発生したときにはクラッシュするので修正。(-> エラーが起こり得ないケースでのみ使用可) 163 // try?で例外を安全に無視できるが、エラーを表示するため do-catch を使用。 164 165 do { 166 let json = try JSONSerialization.jsonObject(with: data) as? [String: Any] 167 if let items = json?["items"] as? [[String: Any]] { 168 // MARK: - 処理をクロージャに任せる 169 completion(items) 170 // MARK: - 以下の処理はクロージャに任せる 171 // self.repo = items 172 // // DispatchQueue で一つ以上のタスクを管理し、async で複数のAPIの非同期通信を実行。 173 // DispatchQueue.main.async { 174 // // UIを更新する処理 175 // self.tableView.reloadData() 176 // } 177 } 178 } catch { 179 // MARK: - 処理をクロージャに任せる 180 errorHandler(error) 181 } 182 } 183 task.resume() 184 185 return task 186 } 187} 188
質問は以上です。
お時間あるときに、ご返信頂けましたら幸いです????
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。