テキスト付きのラベルを作りたいのですが、ラベルが希望のテキストになったら、一度だけ音を鳴らしたいです
クリックするとラベルテキストをチェックするボタンがあり、ラベルテキストが必要な場合はサウンドを再生します(サウンド時間は2秒を超えません)
これはインターフェイス セクションです (viewController.h)
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
{
UILabel *label;
}
@property (nonatomic , strong) IBOutlet UILabel *label;
-(IBAction) checkLabelText:(UIButton *)sender;
@end
this the implementation section (viewController.m)
#import "viewController.h"
@implementation ViewController
@synthesize label
-(IBAction) checkLabelText:(UIButton *)sender
{
if([label.text isEqualToString:@"hi world"])
{
//i want the code of playing the sound here
}
}
@end