・UILabelなどパーツの領域変更
UILabel *valueText;
CGFloat x = 0; // 左上座標X
CGFloat y = 0; // 左上座標Y
CGFloat width = 100; // 幅
CGFloat height= 100; // 高さ
valueText.frame = CGRectMake( x,y,width,height );
Go to list of users who liked
More than 3 years have passed since last update.
・UILabelなどパーツの領域変更
UILabel *valueText;
CGFloat x = 0; // 左上座標X
CGFloat y = 0; // 左上座標Y
CGFloat width = 100; // 幅
CGFloat height= 100; // 高さ
valueText.frame = CGRectMake( x,y,width,height );
Register as a new user and use Qiita more conveniently
Go to list of users who liked