検索

ホームページ  >  に質問  >  本文

objective-c - OC里面对控件不能同时改变尺寸和位置吗?

//
//  ViewController.m
//  02计算器
//
//  Created by mac on 15/8/27.
//  Copyright (c) 2015年 xujianxing. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIButton *bg;
- (IBAction)up;
- (IBAction)down;

@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)up {
    
    NSLog(@"上xx");
    
  CGRect frame=   self.bg.frame;
    frame.size.height=200;
    frame.size.width=200;
    frame.origin.y=frame.origin.y-10;
    self.bg.frame=frame;
    NSLog(@"%f",self.bg.frame.size.height);
}

- (IBAction)down {
    
CGRect  frame = self.bg.frame;
    
    frame.origin.y=frame.origin.y+10;
    self.bg.frame=frame;
}
@end

只变一种就是好的,同时变好像两个都不行了。。打印没有任何变化。。

ringa_leeringa_lee2761日前383

全員に返信(1)返信します

  • 伊谢尔伦

    伊谢尔伦2017-04-24 09:15:43

    これは自動レイアウトが原因です。削除してください。自動レイアウトをキャンセルするには、[表示] をクリックします。

    返事
    0
  • キャンセル返事