AVAudioFormat 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AVAudioFormat() |
默认构造函数,初始化此类的新实例。 |
AVAudioFormat(AudioStreamBasicDescription) |
从指定的 AVAudioFormat 创建新的 |
AVAudioFormat(AudioSettings) |
从指定的 AVAudioFormat 创建新的 |
AVAudioFormat(CMAudioFormatDescription) |
从指定的 AVAudioFormat 创建新的 |
AVAudioFormat(NSCoder) |
从 unarchiver 对象中存储的数据初始化 对象的构造函数。 |
AVAudioFormat(NSDictionary) |
从指定的 |
AVAudioFormat(NSObjectFlag) |
在派生类上调用 的构造函数,以跳过初始化并仅分配 对象。 |
AVAudioFormat(IntPtr) |
创建非托管对象的托管表示形式时使用的构造函数;由运行时调用。 |
AVAudioFormat(AudioStreamBasicDescription, AVAudioChannelLayout) |
AVAudioFormat从指定的 |
AVAudioFormat(Double, AVAudioChannelLayout) |
AVAudioFormat使用指定的 |
AVAudioFormat(Double, UInt32) |
使用指定的 |
AVAudioFormat(AVAudioCommonFormat, Double, Boolean, AVAudioChannelLayout) |
使用指定的值新建 AVAudioFormat。 |
AVAudioFormat(AVAudioCommonFormat, Double, UInt32, Boolean) |
使用指定的值新建 AVAudioFormat。 |
AVAudioFormat()
AVAudioFormat(AudioStreamBasicDescription)
从指定的 AVAudioFormat 创建新的 description
。
[Foundation.Export("initWithStreamDescription:")]
public AVAudioFormat (ref AudioToolbox.AudioStreamBasicDescription description);
new AVFoundation.AVAudioFormat : -> AVFoundation.AVAudioFormat
参数
- description
- AudioStreamBasicDescription
- 属性
适用于
AVAudioFormat(AudioSettings)
从指定的 AVAudioFormat 创建新的 settings
。
public AVAudioFormat (AVFoundation.AudioSettings settings);
new AVFoundation.AVAudioFormat : AVFoundation.AudioSettings -> AVFoundation.AVAudioFormat
参数
- settings
- AudioSettings
适用于
AVAudioFormat(CMAudioFormatDescription)
从指定的 AVAudioFormat 创建新的 formatDescription
。
[Foundation.Export("initWithCMAudioFormatDescription:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 11, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public AVAudioFormat (CoreMedia.CMAudioFormatDescription formatDescription);
new AVFoundation.AVAudioFormat : CoreMedia.CMAudioFormatDescription -> AVFoundation.AVAudioFormat
参数
- formatDescription
- CMAudioFormatDescription
- 属性
适用于
AVAudioFormat(NSCoder)
从 unarchiver 对象中存储的数据初始化 对象的构造函数。
[Foundation.Export("initWithCoder:")]
[ObjCRuntime.DesignatedInitializer]
public AVAudioFormat (Foundation.NSCoder coder);
new AVFoundation.AVAudioFormat : Foundation.NSCoder -> AVFoundation.AVAudioFormat
参数
- coder
- NSCoder
unarchiver 对象。
- 属性
注解
提供此构造函数是为了允许从非架构 (初始化类,例如,在 NIB 反序列化) 期间。 这是协议的一 NSCoding 部分。
如果开发人员想要创建此对象的子类并继续支持从存档反序列化,则应实现具有相同签名的构造函数:采用类型的 NSCoder 单个参数,并使用 [Export (“initWithCoder:”] 属性声明修饰它。
也可以使用配套方法 EncodeTo 对此对象的状态进行序列化。
适用于
AVAudioFormat(NSDictionary)
从指定的settings
字典创建一个新的 AVAudioFormat 。
[Foundation.Export("initWithSettings:")]
public AVAudioFormat (Foundation.NSDictionary settings);
new AVFoundation.AVAudioFormat : Foundation.NSDictionary -> AVFoundation.AVAudioFormat
参数
- settings
- NSDictionary
- 属性
适用于
AVAudioFormat(NSObjectFlag)
在派生类上调用 的构造函数,以跳过初始化并仅分配 对象。
protected AVAudioFormat (Foundation.NSObjectFlag t);
new AVFoundation.AVAudioFormat : Foundation.NSObjectFlag -> AVFoundation.AVAudioFormat
参数
未使用的 sentinel 值,传递 NSObjectFlag.Empty。
注解
当派生类在托管代码中完全构造对象并且仅希望运行时分配和初始化 NSObject 时,应调用此构造函数。 这是实现 Objective-C 使用的两步初始化过程所必需的,第一步是执行对象分配,第二步是初始化对象。 当开发人员调用采用 NSObjectFlag.Empty 的构造函数时,他们利用直接路径(一直一直指向 NSObject)来仅分配对象的内存并将 Objective-C 和 C# 对象绑定在一起。 对象的实际初始化由开发人员决定。
绑定生成器通常使用此构造函数来分配对象,但会阻止实际初始化。 分配完成后,构造函数必须初始化 对象。 对于绑定生成器生成的构造函数,这意味着它会手动调用其中一个“init”方法来初始化对象。
如果对象使用 NSObjectFlag.Empty 路径链接起来,则开发人员负责完全初始化对象。
通常,如果开发人员的构造函数调用 NSObjectFlag.Empty 基实现,则它应调用 Objective-C init 方法。 如果不是这种情况,开发人员应改为链接到其类中的适当构造函数。
参数值将被忽略,仅确保执行的唯一代码是构造阶段是基本的 NSObject 分配和运行时类型注册。 通常,链接如下所示:
//
// The NSObjectFlag merely allocates the object and registers the
// C# class with the Objective-C runtime if necessary, but no actual
// initXxx method is invoked, that is done later in the constructor
//
// This is taken from Xamarin.iOS's source code:
//
[Export ("initWithFrame:")]
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
{
// Invoke the init method now.
var initWithFrame = new Selector ("initWithFrame:").Handle;
if (IsDirectBinding)
Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSend_CGRect (this.Handle, initWithFrame, frame);
else
Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, initWithFrame, frame);
}
适用于
AVAudioFormat(IntPtr)
创建非托管对象的托管表示形式时使用的构造函数;由运行时调用。
protected internal AVAudioFormat (IntPtr handle);
new AVFoundation.AVAudioFormat : nativeint -> AVFoundation.AVAudioFormat
参数
- handle
-
IntPtr
nativeint
指向非托管对象的指针 (句柄) 。
注解
此构造函数由运行时基础结构 (GetNSObject(IntPtr)) 调用,以便为指向非托管 Objective-C 对象的指针创建新的托管表示形式。 开发人员不应直接调用此方法,而是应调用 GetNSObject 方法,因为它将阻止托管对象的两个实例指向同一本机对象。
适用于
AVAudioFormat(AudioStreamBasicDescription, AVAudioChannelLayout)
AVAudioFormat从指定的 description
和 通道 layout
创建新的 。
[Foundation.Export("initWithStreamDescription:channelLayout:")]
public AVAudioFormat (ref AudioToolbox.AudioStreamBasicDescription description, AVFoundation.AVAudioChannelLayout layout);
new AVFoundation.AVAudioFormat : * AVFoundation.AVAudioChannelLayout -> AVFoundation.AVAudioFormat
参数
- description
- AudioStreamBasicDescription
- 属性
适用于
AVAudioFormat(Double, AVAudioChannelLayout)
AVAudioFormat使用指定的 sampleRate
和 通道 layout
创建新的 。
[Foundation.Export("initStandardFormatWithSampleRate:channelLayout:")]
public AVAudioFormat (double sampleRate, AVFoundation.AVAudioChannelLayout layout);
new AVFoundation.AVAudioFormat : double * AVFoundation.AVAudioChannelLayout -> AVFoundation.AVAudioFormat
参数
- sampleRate
- Double
- layout
- AVAudioChannelLayout
- 属性
适用于
AVAudioFormat(Double, UInt32)
使用指定的 sampleRate
和 channels
新建 AVAudioFormat。
[Foundation.Export("initStandardFormatWithSampleRate:channels:")]
public AVAudioFormat (double sampleRate, uint channels);
new AVFoundation.AVAudioFormat : double * uint32 -> AVFoundation.AVAudioFormat
参数
- sampleRate
- Double
- channels
- UInt32
- 属性
适用于
AVAudioFormat(AVAudioCommonFormat, Double, Boolean, AVAudioChannelLayout)
使用指定的值新建 AVAudioFormat。
[Foundation.Export("initWithCommonFormat:sampleRate:interleaved:channelLayout:")]
public AVAudioFormat (AVFoundation.AVAudioCommonFormat format, double sampleRate, bool interleaved, AVFoundation.AVAudioChannelLayout layout);
new AVFoundation.AVAudioFormat : AVFoundation.AVAudioCommonFormat * double * bool * AVFoundation.AVAudioChannelLayout -> AVFoundation.AVAudioFormat
参数
- format
- AVAudioCommonFormat
- sampleRate
- Double
- interleaved
- Boolean
- layout
- AVAudioChannelLayout
- 属性
适用于
AVAudioFormat(AVAudioCommonFormat, Double, UInt32, Boolean)
使用指定的值新建 AVAudioFormat。
[Foundation.Export("initWithCommonFormat:sampleRate:channels:interleaved:")]
public AVAudioFormat (AVFoundation.AVAudioCommonFormat format, double sampleRate, uint channels, bool interleaved);
new AVFoundation.AVAudioFormat : AVFoundation.AVAudioCommonFormat * double * uint32 * bool -> AVFoundation.AVAudioFormat
参数
- format
- AVAudioCommonFormat
- sampleRate
- Double
- channels
- UInt32
- interleaved
- Boolean
- 属性