myButtonの寸法を簡単に印刷したいだけです。コードを確認してください:
@interface ViewController : UIViewController
@property (nonatomic, strong) IBOutlet UIButton *myButton;
および.mファイル:
@implementation ViewController
@synthesize myButton;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
CGRect f2 = self.myButton.bounds;
printf("x: %f\n", f2.origin.x);
CGSize f3 = self.myButton.frame.size;
printf("x: %f\n", f3.height);
}
- (void)viewWillAppear:(BOOL)animated {
CGRect f2 = self.myButton.bounds;
printf("x: %f\n", f2.origin.x);
CGSize f3 = self.myButton.bounds.size;
printf("x: %f\n", f3.height);
}
これは私がコンソールで受け取ったものです:
x: 0.000000
x: 0.000000
x: 0.000000
x: 0.000000
どうすれば印刷できますか?