zoukankan      html  css  js  c++  java
  • ios震动和播放铃声

    - (id)initSystemShake

    {

        self = [super init];

        if (self) {

            sound = kSystemSoundID_Vibrate;//震动  ipod不支持系统振动

        }

        return self;

    }

     

    - (id)initSystemSoundWithName:(NSString *)soundName SoundType:(NSString *)soundType

    {

        self = [super init];

        if (self) {

            NSString *path = [NSString stringWithFormat:@"/System/Library/Audio/UISounds/%@.%@",soundName,soundType];

            //[[NSBundle bundleWithIdentifier:@"com.apple.UIKit" ]pathForResource:soundName ofType:soundType];//得到苹果框架资源UIKit.framework ,从中取出所要播放的系统声音的路径

            //[[NSBundle mainBundle] URLForResource: @"tap" withExtension: @"aif"];  获取自定义的声音

            if (path) {

                OSStatus error = AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:path],&sound);

                

    //            if (error != kAudioServicesNoError) {//获取的声音的时候,出现错误

    //                sound = nil;

    //            }

            }

        }

        return self;

    }

     

    - (void)play

    {

        AudioServicesPlaySystemSound(sound);

        //AudioServicesPlayAlertSound(sound);

    }

    - (void)playshake // 系统震动

    {

         AudioServicesPlaySystemSound(sound);

        //AudioServicesPlayAlertSound(sound);

    }

     

    - (void)dealloc

    {

        if (sound)

        {

           //AudioServicesDisposeSystemSoundID(sound);

        }

    }

     

     

     

    // --------------------点击播放-----------------

    - (IBAction)systemshake:(id)sender {

        PlaySound *sound = [[PlaySound alloc] initSystemShake];

        [sound plays];

    }

     

    - (IBAction)systemaudio:(id)sender {

        PlaySound *sound = [[PlaySound alloc] initSystemSoundWithName:@"sms-received1" SoundType:@"caf"];

        [sound play];

    }

  • 相关阅读:
    HTML&&CSS
    web概述&HTML快速入门
    JDBC连接池&JDBCTemplate
    基于Breast Cancer dataset的决策树分类及可视化
    三维数组按行优先存储求某位置的地址
    2019年复旦计算机专硕考研经验总结
    1013 Battle Over Cities (25 分)
    1009 Product of Polynomials (25 分)
    1004 Counting Leaves (30 分)
    1090 危险品装箱 (25 分)
  • 原文地址:https://www.cnblogs.com/supersr/p/7428640.html
Copyright © 2011-2022 走看看