swift
1 var add = UILabel() 2 3// ラベル(tag=1)にアクセス 4 let label = cell.contentView.viewWithTag(1) as! UILabel 5 label.text = add //"apple"
やりたい事
label.text の部分のエラーを取りたい。
UILabelだとどうしてもエラーが出てしまうのでどうすればいいのかを知りたい
import UIKit class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate{ @IBOutlet weak var mytableView: UITableView! var add = UILabel() let item = [""] //var longPressRecognizer: UILongPressGestureRecognizer! //+ボタン @IBAction func addlabel(_ sender: Any) { alert() //label() } //ラベルについて func label(){ add = UILabel(frame: CGRect(x: 130, y:250, width: 100, height:20)) //ラベルの大きさ、座標指定 //add.text = "labelです" //文字を変更 add.backgroundColor = UIColor.lightGray add.font = UIFont.systemFont(ofSize: 30) //文字の大きさ add.textColor = UIColor.black //文字カラー add.sizeToFit() //文字数にあわせてlabelの大きさを変更(サイズが文字にフィットする) self.view.addSubview(add) //実際にviewに見える形でlabelが出現する } func alert(){ // テキストフィールド付きアラート表示 let alert = UIAlertController(title: "タイトル", message: "メッセージ", preferredStyle: .alert) // OKボタンの設定 let okAction = UIAlertAction(title: "OK", style: .default, handler: { (action:UIAlertAction!) -> Void in // OKを押した時入力されていたテキストを表示 if let textFields = alert.textFields { // アラートに含まれるすべてのテキストフィールドを調べる for textField in textFields { self.label() self.add.text = textField.text! self.add.sizeToFit() print(textField.text!) } } }) alert.addAction(okAction) // キャンセルボタンの設定 let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil) alert.addAction(cancelAction) // テキストフィールドを追加 alert.addTextField(configurationHandler: {(textField: UITextField!) -> Void in textField.placeholder = "テキスト" }) alert.view.setNeedsLayout() // シミュレータの種類によっては、これがないと警告が発生 // アラートを画面に表示 self.present(alert, animated: true, completion: nil) } func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { return add } func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return item.count } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) let item = add cell.textLabel?.text = item[indexPath.row] return cell } override func viewDidLoad() { super.viewDidLoad() } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } }
回答2件
あなたの回答
tips
プレビュー