728x90
- (void)viewDidLoad {
[super viewDidLoad];
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setFrame:CGRectMake(0.0f, 0.0f, 80.0f, 30.0f)];
[button setCenter:CGPointMake(160.0f, 208.0f)];
[button setTitle:@"Beep" forState:UIControlStateNormal];
[button addTarget:self action:@selector(playSound)
forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
}
-(void)playSound
{
NSLog(@"소리나게 하는 소스 추가");
}
728x90
'Developer > iOS' 카테고리의 다른 글
[IPhone] [APNS] java 로 push notification server 및 클라이언트 구현하기(아이폰 푸시 서버) (1) | 2011.04.05 |
---|---|
[IPhone] String -> MD5(암호) 변환 샘플 (3) | 2011.03.21 |
[IPhone]UIBarButtonItem에 Custom Button으로 Image로 바꾸기 (0) | 2011.01.24 |
[IPhone] TableView 터치시 파란색을 다른색으로 바꾸기 (1) | 2011.01.19 |
[IPhone] TabBarController의 TabBar(hidden) 숨기기. (1) | 2011.01.18 |