我在我的应用程序中创建了一个菜单。
菜单有4个单元格,通过修改原型单元格创建。
每个单元格应该执行4 cpdef PyMessage(self,handle_to_window):
# code to deal with null goes here?
hwnd = <PyHandleToWindow?>handle_to_window # note the question mark to test if the cast is valid
return self.thisptr.Message(hwnd.ptr, u"Hello Cython \u263a", title, 0)
s之一的segue。
我怎么能意识到这一点?有什么想法吗?
答案 0 :(得分:3)
你可以:
1)创建4个原型单元,每个单元直接连接到各自的viewController。在这种情况下,每个给每个原型单元格自己的标识符(例如"cell1"
,"cell2"
,"cell3"
和"cell4"
)然后在cellForRowAtIndexPath
出列使用行的适当标识符:["cell1", "cell2", "cell3", "cell4"][indexPath.row]
。
OR
2)连接viewController顶部viewController图标中的segue,给出segues标识符,并在performSegueWithIdentifier
中使用didSelectRowAtIndexPath
触发相应的segue。