我想制作有文字的标签,当标签变成我想要的文字时,我希望只播放一次声音
我的意思是我有一个按钮,当点击它时,它会检查标签文本,如果标签文本是我想要它播放声音的那个(声音时间不超过 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