UISegmentedControl判断点击第几项_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > UISegmentedControl判断点击第几项

UISegmentedControl判断点击第几项

 2013/8/27 18:05:20  沈阳--志强  博客园  我要评论(0)
  • 摘要:UISegmentedControl关于UISegmentedControl判断当前点击的是第几项,找了很久,终于再老外的博客上找到了,在委托中UISegmentedControl*Seg=sender;NSIntegerIndex=Seg.selectedSegmentIndex;.csharpcode,.csharpcodepre{font-size:small;color:black;font-family:consolas,"CourierNew",courier,monospace
  • 标签:

UISegmentedControl

关于UISegmentedControl判断当前点击的是第几项,找了很久,终于再老外的博客上找到了,在委托中

class="csharpcode">UISegmentedControl *Seg=sender;
NSInteger Index = Seg.selectedSegmentIndex;

这样  index 就是当前点击的是第几项,他是从0开始计算的.

  • 相关文章
发表评论
用户名: 匿名