uibutton for ()
wxwldu
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
for 循环创建button 算法
#define Start_X 10.0f // 第一个按钮的X坐标#define Start_Y 50.0f // 第一个按钮的Y坐标#define Width_Space 5.0f // 2个按钮之间的横间距#define Height_Space 20.0f // 竖间距#define Butto转载 2014-08-08 16:57:54 · 1046 阅读 · 0 评论 -
多个uibutton 只选中其中一个
一、定义一个UIButton *currenctButton; - (IBAction)ButtonAction:(UIButton *)sender { if (sender != currentButton) { currentButton.selected = NO; currentButton = sender; } currentButton.select转载 2014-09-02 15:32:26 · 855 阅读 · 0 评论
分享