如何在表格视图上显示Checkmark?

时间:2018-08-15 05:55:33

标签: uitableview xamarin uiviewcontroller xamarin.ios

我想做一个验证开/关按钮,以表明学生已通过验证。在“ AddStudentViewController”中打开开关后,将在“ StudentDataBaViewController”的表列表中特定学生行的右侧显示一个复选标记。我可以知道怎么做吗?

**其他信息:

1)StudentDataBaViewContoller(应用程序的第一页)是一个TableViewController 2)AddStudentViewController(应用程序的第二页)是普通的View Controller

两者均与名为“ StuSegue”的Push Segue连接

下面附上我的2视图控制器的代码:


“ StudentDataBaViewController”的代码:

GraphView

“ AddStudentViewController”的代码:

import graph_tool.all as gt

# Load a disconnected graph
g = gt.collection.data["netscience"]

# Extract the largest component
largest_comp = gt.GraphView(g, vfilt = gt.label_largest_component(g))

# Draw the largest component
gt.graph_draw(largest_comp, output = "largest_comp.svg")

1 个答案:

答案 0 :(得分:0)

根据我的理解,您希望在“ AddStudentViewController”中打开开关后在“ StudentDataBaViewController”中刷新UI。 您可以使用委托在两个控制器之间发送消息。