zoukankan      html  css  js  c++  java
  • ios-center 和 bounds用法

    //
    //  ViewController.m
    //  MovePicture
    //
    //  Created by YaguangZhu on 15/7/28.
    //  Copyright (c) 2015年 YaguangZhu. All rights reserved.
    //
    
    #import "ViewController.h"
    
    @interface ViewController ()
    - (IBAction)move:(UIButton *)sender;
    
    - (IBAction)scale:(UIButton *)sender;
    
    
    
    @property (weak, nonatomic) IBOutlet UIButton *btnIcon;
    
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
    }
    
    - (void)didReceiveMemoryWarning {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }
    
    
    - (IBAction)move:(UIButton *)sender {
        
        CGPoint centerPoint =  self.btnIcon.center;
        switch (sender.tag) {
            case 10:
                NSLog(@"up");
                centerPoint.y -=10;
                break;
            case 20:
                NSLog(@"right");
                centerPoint.x +=10;
                break;
            case 30:
                NSLog(@"down");
                centerPoint.y +=10;
                break;
            case 40:
                NSLog(@"left");
                centerPoint.x -=10;
                break;
            default:
                break;
        
        }
        
        self.btnIcon.center = centerPoint;
    
    }
    
    - (IBAction)scale:(UIButton *)sender {
        
        CGRect originBounds = self.btnIcon.bounds;
        if (sender.tag == 100) {
             NSLog(@"big");
            originBounds.size.height +=10;
            originBounds.size.width +=10;
            
            self.btnIcon.bounds = originBounds;
        }else
        {    NSLog(@"small");
            originBounds.size.height -=10;
            originBounds.size.width -=10;
            
            self.btnIcon.bounds = originBounds;
    
        }
        
        self.btnIcon.bounds = originBounds;
    }
    
    
    @end
  • 相关阅读:
    redis整合spring(三)注解的方式缓存
    redis整合spring (二)
    redis整合spring (一)
    Redis面试
    JVM(六)JVM调优
    JVM故障(二)GC导致cpu飙高
    JVM故障(一)CPU跑满定位
    JVM 故障调优
    洛谷-P2141 珠心算测验
    洛谷-P1205 [USACO1.2]方块转换 Transformations
  • 原文地址:https://www.cnblogs.com/zhuyaguang/p/4685226.html
Copyright © 2011-2022 走看看