码迷,mamicode.com
首页 > 其他好文 > 详细

根据tag获取控件,并且根据两个控件的tag交换控件图片

时间:2015-05-11 08:58:11      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:ui   uiview   iphone   属性交换   

 根据tag获取控件,并且根据两个控件的tag交换控件图片

/**

 *  移动

 */

-(void)remove:(int)tag toTag:(int)tag2

{

    //取要移动到的位置button

    UIButton *mybutton = (UIButton *)[self.view viewWithTag:tag2];

    //取点击的button

    UIButton *mybutton1 = (UIButton *)[self.view viewWithTag:tag];

    //点击button的图片

    UIImage *myImage = mybutton1.currentBackgroundImage;

    //把图片赋值给空的button

    [mybutton setBackgroundImage:myImage forState:normal];

    //原先有图片的button背景图片赋值为空

    [mybutton1 setBackgroundImage:nil forState:normal];

}

 

根据tag获取控件,并且根据两个控件的tag交换控件图片

标签:ui   uiview   iphone   属性交换   

原文地址:http://blog.csdn.net/u010438187/article/details/45627123

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!