iOS 播放音效/父子控制器/线程

Xcode下载解决办法:到该地址去手动下载安装器安装:
https://idmsa.apple.com/IDMSWebAuth/signin?appIdKey=891bd3417a7776362562d2197f89480a8547b108fd934911bcbea0110d07f757&path=%2Fdownload%2Fmore%2F&rv=1

打开PDF文件:https://github.com/SaiBeiGuYan/QLPreviewControllerDemo

1.iOS 播放音效

#import "ViewController.h"
#import <AudioToolbox/AudioToolbox.h>

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
   }


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
   
}

-(SystemSoundID)getSystemSoundID{
    
    // 加载音效
    SystemSoundID soundID;
    
    NSString *path = [[NSBundle mainBundle] pathForResource:@"wangzha.mp3" ofType:nil];
    
    NSURL *url = [NSURL fileURLWithPath:path];
    
    AudioServicesCreateSystemSoundID((__bridge CFURLRef)(url), &soundID);
    
    return soundID;


}

-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{

    
    
    // 播放音效
    AudioServicesPlaySystemSound([self getSystemSoundID]);



}


@end


2.父子控制器

#import "ViewController.h"
#import "SonViewController.h"

@interface ViewController ()

@property(strong, nonatomic) SonViewController *svc;

@property(strong, nonatomic) UIViewController  *cvc;

- (IBAction)change:(id)sender;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    
    //添加两个子控制器
    [self addAnotherChild];
    
    [self addOneChild];
    
    
}

-(void)addAnotherChild{
    
    
    self.svc = [[UIStoryboard storyboardWithName:@"Main" bundle:nil]instantiateViewControllerWithIdentifier:@"abc"];
    
    //添加某个控制器为当前控制器的子控制器
    [self addChildViewController:self.svc];
    
    self.svc.view.frame = CGRectMake(10, 100, self.view.frame.size.width - 20, 200);
    
    //一般情况下,只要控制器成为了子控制器,那么view也应该成为子view
    [self.view addSubview:self.svc.view];
    
    
    
}


-(void)addOneChild{
    
    
    UIViewController *vc = [[UIViewController alloc]init];
    
    vc.view.backgroundColor = [UIColor greenColor];
    
    vc.view.frame = CGRectMake(10, 100, self.view.frame.size.width - 20, 200);
    
    
    [self addChildViewController:vc];
    
    [self.view addSubview:vc.view];
    
    self.cvc = vc;
    
    
    
}


- (IBAction)change:(id)sender {
    
    UISwitch *switc = (UISwitch *)sender;
    
    if ([switc isOn]) {
        
        //同一个控制器的子控制器之间可以用如下的方式添加切换动画 前提是它们两个必须先添加到同一个父控制器
        [self transitionFromViewController:self.cvc toViewController:self.svc duration:1 options:UIViewAnimationOptionTransitionFlipFromLeft animations:^{
            
            [self.cvc.view removeFromSuperview];
            
        } completion:^(BOOL finished) {
            
            NSLog(@"%@", self.childViewControllers);
            
        }];
        
        
        
    }
    
    else{
        
        
        [self transitionFromViewController:self.svc toViewController:self.cvc duration:1 options:UIViewAnimationOptionTransitionFlipFromLeft animations:^{
            
            [self.svc.view removeFromSuperview];
            
        } completion:^(BOOL finished) {
            
            NSLog(@"%@", self.childViewControllers);
            
        }];
        
        
        
    }
    
}

//移除控制器与视图
//-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
//
//
//    [self.cvc removeFromParentViewController];
//
//    NSLog(@"%@", self.cvc.view);
//    
//    [self.cvc.view removeFromSuperview];
//    
//}
//


@end

3.线程之间通讯

//  不能在子线程中更新主界面 ---> 子线程进行耗时操作,回到主线程进行界面更新的 模式 ---> 线程之间通信问题


#import "ViewController.h"

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UILabel *username;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    
   
    [self operationMode];
    
}

//NSOperation
-(void)operationMode{
    
    NSOperationQueue *queue = [[NSOperationQueue alloc]init];
    
    [queue addOperationWithBlock:^{
        
        [NSThread sleepForTimeInterval:2.0];
        
        [NSOperationQueue.mainQueue addOperationWithBlock:^{
            
            self.username.text = @"欢迎你,张三";
        }];
        
    }];
    
}


//GCD模式
-(void)gcdMode{
    
    dispatch_queue_t queue =  dispatch_get_global_queue(0, 0);
    
    dispatch_async(queue, ^{
        
        [NSThread sleepForTimeInterval:2.0];
        
        dispatch_async(dispatch_get_main_queue(), ^{
            
            self.username.text = @"欢迎你,张三";
        });

    });
    
}


//NSThread模式
-(void)threadMode{
    
    NSThread *thread = [[NSThread alloc]initWithTarget:self selector:@selector(updateUI) object:nil];
    
    [thread start];
    
}


-(void)updateUI{
    
    [NSThread sleepForTimeInterval:2.0];
    
    [self performSelectorOnMainThread:@selector(updateOnMain) withObject:nil waitUntilDone:NO];
    
}

-(void)updateOnMain{
    
    self.username.text = @"欢迎你,张三";
}

@end

4.多线程互斥锁

#import "ViewController.h"

@interface ViewController ()

@property(nonatomic, assign) int totalTicket;

@property(nonatomic, strong) NSLock *lock;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    
    _totalTicket = 20;
    _lock = [[NSLock alloc]init];
    
    
    NSThread *thread1 = [[NSThread alloc]initWithTarget:self selector:@selector(buyTicket) object:nil];
    thread1.name = @"窗口1";
    NSThread *thread2 = [[NSThread alloc]initWithTarget:self selector:@selector(buyTicket) object:nil];
    thread2.name = @"窗口2";
    NSThread *thread3 = [[NSThread alloc]initWithTarget:self selector:@selector(buyTicket) object:nil];
    thread3.threadPriority = 50.0;
    thread3.name = @"窗口3";
    
    
    [thread1 start];
    [thread2 start];
    [thread3 start];
    
    
    
    
}


#pragma mark - 解决方法一@synchronized
-(void)buyTicket{
    
    while (true) {
        
        
        [NSThread sleepForTimeInterval:1];
        //对于临界资源 多线程访问往往会出现问题 加锁可以解决
        
        //加锁的结果:每次只有一个线程可以访问临界资源
        //加锁是一个标志,当该资源没有线程访问的时候,🔒标志为0,当第一个线程来的时候,🔒的标志为1,第一个线程开始访问临界资源
        //如果此时有其他线程来访问该临界资源,先要看看🔒是不是为0,如果是1,则阻塞自己,等待上一个线程访问结束。
        //第一个线程访问结束以后,🔒的标志为0,这时候通知那些准备访问该资源的线程可以来访问了,这时候按照顺序(CPU调度)来继续访问
        
        @synchronized (self) {
            
            if (_totalTicket > 0) {
                
                _totalTicket--;
                
                NSLog(@"%@卖出去一张票,还剩%d", [NSThread currentThread].name, _totalTicket);
            }
            
            else{
                
                NSLog(@"卖完了! %@",[NSThread currentThread].name);
                break;
            }
            
        }
        
        
    }
    
}

#pragma mark - 解决方法一NSLock
-(void)buyTicket2{
    
    while (true) {
        
        
        [NSThread sleepForTimeInterval:1];
        //加锁
        [_lock lock];
        
        if (_totalTicket > 0) {
            
            _totalTicket--;
            
            NSLog(@"%@----%d", [NSThread currentThread].name,_totalTicket);
            
        }
        
        else{
            
            NSLog(@"卖完了! %@",[NSThread currentThread].name);
            break;
        }
        
        //解锁
        [_lock unlock];
    }
    
}



@end
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容

  • ¥关闭¥ 【雷霆战机】 〖http://pan.baidu.com/s/1kVstszX〗 《解压源码后直接用AI...
    小菜c阅读 9,434评论 0 19
  • ¥开启¥ 【雷霆战机】 〖http://pan.baidu.com/s/1kVstszX〗 《解压源码后直接用AI...
    小菜c阅读 3,691评论 0 5
  • 一、简历准备 1、个人技能 (1)自定义控件、UI设计、常用动画特效 自定义控件 ①为什么要自定义控件? Andr...
    lucas777阅读 5,193评论 2 54
  • ¥开启¥ 【雷霆战机】 〖http://pan.baidu.com/s/1kVstszX〗 《解压源码后直接用AI...
    小菜c阅读 3,534评论 1 10
  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,094评论 1 32