`
修博龙泉
  • 浏览: 313418 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

iphone UIButton 按钮初始化

 
阅读更多
for (int i=0; i<9; i++) {
    UIButton *roundedRectButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];    
    CGRect buttonRect = CGRectMake(18+(i%9%3)*105+(i/9)*320, 35+(i%9/3)*105, 80, 80);
    [roundedRectButton setFrame:buttonRect];
    //[roundedRectButton setTitle:@"Normal" forState:UIControlStateNormal];
    [roundedRectButton setTitle:@"Highlighted" forState:UIControlStateHighlighted];
    roundedRectButton.showsTouchWhenHighlighted = YES;
        [roundedRectButton setTag:i];
        [roundedRectButton setBackgroundImage:[UIImage imageNamed:@"logo.jpg"] forState:UIControlStateNormal];
    [roundedRectButton addTarget:self action:@selector(buttonDown:) forControlEvents:UIControlEventTouchDown];
    [self.view addSubview:roundedRectButton];
    }
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics