摘要:
1. 右值:只可以放在等号右侧的变量。例如下面的例子: 1 2 3 4 int a = 1; int b = a + 2; int& c = a + 2; //error a+2 = 3; // error 这里的a+2只能放在等好的右侧,所以a+2是右值。 为什么a+2只能放在等号右侧呢?原因在于 阅读全文
摘要:
1. import SwiftUI import PlaygroundSupport struct ContentView : View { @State var index = 0 var body: some View { VStack{ Text("hello world") .padding 阅读全文
摘要:
1. $ cd ~/.cocoapods/repos $ pod repo remove master$ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master 最后进入自己的工程,在自己工程的pod 阅读全文
摘要:
1. pod 'CocoaLumberjack', '~> 2.2.0' #import <CocoaLumberjack/CocoaLumberjack.h> #ifdef DEBUG static DDLogLevel ddLogLevel = DDLogLevelVerbose; #else 阅读全文
摘要:
1. https://www.jianshu.com/p/0f0fc1ec311a -(aw_flv_audio_tag *)encodePCMDataToFlvTag:(NSData *)pcmData{ self.curFramePcmData = pcmData; //构造输出结构体,编码器需 阅读全文
摘要:
1. 扩展组件 新建一个基类为 WXComponent 的类。如果这个类里什么代码也不写,它和默认的的 div 组件能力是一致的。 覆盖 WXComponent 中的生命周期方法 loadView一个组件默认对应于一个 view,如果未覆盖 loadView 提供自定义 view,会让 WXComp 阅读全文
摘要:
1. Testin :https://www.testin.cn/ https://blog.csdn.net/weixin_41225426/article/details/80621026 阅读全文
摘要:
1. let synthesizer = AVSpeechSynthesizer() synthesizer.speak(AVSpeechUtterance(string: "Hello AV Foundation. How are you?")) https://blog.csdn.net/wei 阅读全文
摘要:
1. #import "ReplaceURLProtocol.h" // 为了避免canInitWithRequest和canonicalRequestForRequest的死循环 static NSString *const URLProtocolHandledKey = @"URLProtoco 阅读全文
摘要:
1. 如何实现1080P延迟低于500ms的实时超清直播传输技术 https://blog.csdn.net/yuanrxdu/article/details/78584284?spm=1001.2014.3001.5501 阅读全文