我想爲多個場景使用相同的ViewController。現在我想根據使用哪個場景來實現稍微不同的行爲。我想這是可能的使用標識符。像(僞代碼) if (self.identifier == scene1)
{
// do this
}
else if (self.identifier == scene2)
{
// do that
}
如何從ViewControlle
我有一個UITableViewCell由子容器UIView和一些其他子組件,如標籤,背景,圖標等... 每個UIImageView也有一個亮點圖像在Xcode IB中設置。 單元格組裝在一個UIStoryBoard中,並且有一個segue連接到它,因此我沒有使用代表的典型didSelect方法。 這是層級: UIViewController (serving as UITableView dele