SubViews中如果根据tag获取到指点的 UIView – viewWithTag

通常我们在初始化页面后,在UIView 上动态的添加多个子 View 时,又没设置类成员变量,在相关的操作中又要使用到那些子视图的控件。这时我们就可以用 viewWithTag 这个方法来获取相关子视图的变量,以方便操作。

类似例子:

UIImageView *leftMsgBg = [[[UIImageViewallocinitWithFrame:CGRectMake(001737)]autorelease];

[leftMsgBg setImage:[UIImageimageNamed:@”bg_camera_left”]];

leftMsgBg.tag = 123;

UIImageView *midMsgBg = [[[UIImageViewallocinitWithFrame:CGRectMake(1708537)]autorelease];

// [midMsgBg setImage:[UIImage imageNamed:@"bg_camera"]];

[midMsgBg setBackgroundColor:[UIColorgrayColor]];

midMsgBg.tag = 124;

UIImageView *rightMsgBg = [[[UIImageViewallocinitWithFrame:CGRectMake(10201737)]autorelease];

[rightMsgBg setImage:[UIImageimageNamed:@”bg_camera_right”]];

rightMsgBg.tag = 125;

UILabel * lab = [[[UILabelalloc]initWithFrame:CGRectMake(2006537)]autorelease];

lab.text = @”新消息!!!”;

lab.tag = 126;

[lab setFont:[UIFontboldSystemFontOfSize:14]];

[lab setBackgroundColor:[UIColorclearColor]];

[lab setTextColor:[UIColoryellowColor]];

[self.newMsgBgaddSubview:leftMsgBg];

[self.newMsgBgaddSubview:midMsgBg];

[self.newMsgBgaddSubview:rightMsgBg];

[self.newMsgBgaddSubview:lab];

UIImageView *leftMsgBg = (UIImageView *)[self.newMsgBgviewWithTag:123];

UIImageView *midMsgBg = (UIImageView *)[self.newMsgBgviewWithTag:124];

UILabel * lab = (UILabel *)[self.newMsgBgviewWithTag:126];

文章作者:zxwo0o
本文地址:http://www.xmsdn.net/iso/viewwithtag/
版权所有 © 转载时必须以链接形式注明作者和原始出处!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值