• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 是否可以在objc中的ios中播放小于0.25秒的振动

[复制链接]
菜鸟教程小白 发表于 2022-12-11 18:14:33 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我需要在ios中播放振动小于0.25秒,振动的顺序是这样的

1 次振动 0.25 秒,然后 3 次振动 0.15 秒,此循环将持续有限的时间,例如 2 或 3 分钟。这里还需要准确性意味着每次振动都必须在准确的时间开始

现在当我播放振动时,它每秒播放一次

-(IBAction)onBtnVibrateClickedid)sender {
    [self.view endEditing:YES];

    [myTimer invalidate];
    if(_txt_VibrationPerMinute.text.length == 0){
        _txt_VibrationPerMinute.text = @"10";
    }
    myTimer = [NSTimer scheduledTimerWithTimeInterval:60/[_txt_VibrationPerMinute.text intValue]
                                     target:self
                                   selectorselector(targetMethod
                                   userInfo:nil
                                    repeats:YES];
}

- (IBAction)obBtnStopVibrationClickedid)sender {

    [myTimer invalidate];


}

-(void)targetMethodNSTimer *)timer {
    AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
}



Best Answer-推荐答案


是的,你可以使用这样的东西

FOUNDATION_EXTERN void AudioServicesPlaySystemSoundWithVibration(UInt32 inSystemSoundID,id arg,NSDictionary* vibratePattern);

void vibrate(float durationInSeconds, float intensivity, long count)
{
    NSMutableDictionary* dict = [NSMutableDictionary dictionary];
    NSMutableArray* arr = [NSMutableArray array];
    for (long i = count; i--;)
    {
        [arr addObject:[NSNumber numberWithBool:YES]]; //vibrate
        [arr addObject:[NSNumber numberWithInt:durationInSeconds*1000]];

        [arr addObject:[NSNumber numberWithBool:NO]];  //stop
        [arr addObject:[NSNumber numberWithInt:durationInSeconds*1000]];
    }

    [dict setObject:arr forKey"VibePattern"];
    [dict setObject:[NSNumber numberWithFloat:intensivity] forKey"Intensity"];

    AudioServicesPlaySystemSoundWithVibration(4095,nil,dict);
}

关于ios - 是否可以在objc中的ios中播放小于0.25秒的振动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40930556/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap