0

我想设置 alrms 所以我使用这个代码。

UILocalNotification *localNotif = [[UILocalNotification alloc] init];
    if (localNotif == nil)
        return;
    localNotif.fireDate = itemDate;
    localNotif.timeZone = [NSTimeZone defaultTimeZone];

    localNotif.alertBody = @"Appointment";

    localNotif.alertAction = @"View";

    //localNotif.soundName = UILocalNotificationDefaultSoundName;
    localNotif.soundName = @"Iphone_Alarm.mp3";
    //localNotif.soundName=@"sound.mp3";
    localNotif.applicationIconBadgeNumber = 1;

    [[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
    [localNotif release];

它显示警报但不播放声音,声音名称具有正确的大小写和拼写。在设备上它也没有振动。

4

1 回答 1

1

尝试定义 mp3 文件的完整路径:

localNotif.soundName = [[NSBundle mainBundle] pathForResource:@"Iphone_Alarm" ofType:@"mp3"];

虽然不确定振动。

于 2011-02-14T05:18:27.693 回答