10
วิธีการจัดการ Weak Self ที่ถูกต้องในบล็อก Swift ด้วยอาร์กิวเมนต์อย่างถูกต้อง
ในตัวฉันTextViewTableViewCellฉันมีตัวแปรที่จะติดตามบล็อกและวิธีกำหนดค่าที่บล็อกถูกส่งผ่านและกำหนด นี่คือTextViewTableViewCellชั้นเรียนของฉัน: // // TextViewTableViewCell.swift // import UIKit class TextViewTableViewCell: UITableViewCell, UITextViewDelegate { @IBOutlet var textView : UITextView var onTextViewEditClosure : ((text : String) -> Void)? func configure(#text: String?, onTextEdit : ((text : String) -> Void)) { onTextViewEditClosure = onTextEdit textView.delegate = self textView.text = text } // #pragma mark …
151
ios
swift
retain-cycle