※リストが表示されない場合
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)button1Down:(id)sender;
- (IBAction)button1StillDown:(id)sender;
- (IBAction)button1UpIn:(id)sender;
- (IBAction)button1UpOut:(id)sender;
@end
※MyIAppViewController.m
import "MyIAppViewController.h"
@implementation MyIAppViewController
@dynamic label1;
@dynamic button1;
- (IBAction)button1Down:(id)sender {
[label1 setText:@"Down"];
}
- (IBAction)button1StillDown:(id)sender {
[label1 setText:@"StillDown"];
}
- (IBAction)button1UpIn:(id)sender {
[label1 setText:@"UpIn"];
}
- (IBAction)button1UpOut:(id)sender {
[label1 setText:@"UpOut"];
}
| << 前へ |