CGPointMake( 横位置 , 縦位置 );
CGSizeMake( 横幅 , 縦幅 );
CGRectMake( 横位置 , 縦位置 , 横幅 , 縦幅 );
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※MyIAppViewController.h
#import <UIKit/UIKit.h>
@interface MyIAppViewController : UIViewController {
UILabel * label1;
UIButton * button1;
}
@property (nonatomic, retain) IBOutlet UILabel * label1;
@property (nonatomic, retain) IBOutlet
UIButton * button1;
- (IBAction)button1Action:(id)sender;
@end
※MyIAppViewController.m
@implementation MyIAppViewController
@dynamic label1;
@dynamic button1;
- (IBAction)button1Action:(id)sender {
CGRect r = [label1 frame];
CGRect r2 = CGRectMake(r.origin.x + 10,
r.origin.y + 10,
r.size.width - 10,
r.size.height + 10);
[label1 setFrame:r2];
}
……中略……
@end
| << 前へ | 次へ >> |