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];

    }

  • 相关阅读:
    当我说要做大数据工程师时他们都笑我,直到三个月后……转
    体系化认识RPC--转
    jsoup HTML parser hello world examples--转
    数组指针和指针数组的区别
    什么是计算机科学
    HTML图片热区map area的用法
    九宫八卦--易学基础
    初探Net框架下的XML编程技术
    百度网盘学习资料
    遍历json 对象的属性并且动态添加属性
  • 原文地址:https://www.cnblogs.com/supersr/p/7428640.html
Copyright © 2011-2022 走看看