私のTextViewTableViewCell
には、ブロックを追跡する変数と、ブロックが渡されて割り当てられるconfigureメソッドがあります。
これが私の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 - Text View Delegate
func textViewDidEndEditing(textView: UITextView!) {
if onTextViewEditClosure {
onTextViewEditClosure!(text: textView.text)
}
}
}
私のcellForRowAtIndexPath
メソッドでconfigureメソッドを使用する場合、渡すブロックで弱い自己を適切に使用するにはどうすればよい
ですか?弱い自己がない場合は次のようになります。
let myCell = tableView.dequeueReusableCellWithIdentifier(textViewCellIdenfitier) as TextViewTableViewCell
myCell.configure(text: body, onTextEdit: {(text: String) in
// THIS SELF NEEDS TO BE WEAK
self.body = text
})
cell = bodyCell
更新:私は以下を使用して動作するようになりました[weak self]
:
let myCell = tableView.dequeueReusableCellWithIdentifier(textViewCellIdenfitier) as TextViewTableViewCell
myCell.configure(text: body, onTextEdit: {[weak self] (text: String) in
if let strongSelf = self {
strongSelf.body = text
}
})
cell = myCell
ステートメントの[unowned self]
代わりに[weak self]
それを実行するとif
、アプリがクラッシュします。これがどのように機能するかについてのアイデアはあります[unowned self]
か?