AVAudioFormat 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
AVAudioFormat() |
預設建構函式,初始化這個類別的新實例。 |
AVAudioFormat(AudioStreamBasicDescription) |
從指定的 AVAudioFormat 建立新 |
AVAudioFormat(AudioSettings) |
從指定的 AVAudioFormat 建立新 |
AVAudioFormat(CMAudioFormatDescription) |
從指定的 AVAudioFormat 建立新 |
AVAudioFormat(NSCoder) |
從儲存在 unarchiver 物件中的資料初始化 物件的建構函式。 |
AVAudioFormat(NSDictionary) |
從指定的 |
AVAudioFormat(NSObjectFlag) |
在衍生類別上呼叫的建構函式,以略過初始化,並只配置 物件。 |
AVAudioFormat(IntPtr) |
建立 Unmanaged 物件的 Managed 標記法時所使用的建構函式;由執行時間呼叫。 |
AVAudioFormat(AudioStreamBasicDescription, AVAudioChannelLayout) |
從指定的 |
AVAudioFormat(Double, AVAudioChannelLayout) |
使用指定的 |
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 還原序列化) 期間,從 unarchiver (初始化 類別。 這是通訊協定的 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。
備註
當衍生類別完全建構 Managed 程式碼中的物件,而且只想要執行時間配置和初始化 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)
建立 Unmanaged 物件的 Managed 標記法時所使用的建構函式;由執行時間呼叫。
protected internal AVAudioFormat (IntPtr handle);
new AVFoundation.AVAudioFormat : nativeint -> AVFoundation.AVAudioFormat
參數
- handle
-
IntPtr
nativeint
指標 (處理 Unmanaged 物件的) 。
備註
執行時間基礎結構會叫用此建構函式 (GetNSObject(IntPtr)) ,為 Unmanaged Objective-C 物件的指標建立新的 Managed 標記法。 開發人員不應該直接叫用這個方法,而是應該呼叫 GetNSObject 方法,因為它會防止 Managed 物件的兩個實例指向相同的原生物件。
適用於
AVAudioFormat(AudioStreamBasicDescription, AVAudioChannelLayout)
從指定的 description
和 通道 layout
建立新的 AVAudioFormat 。
[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)
使用指定的 sampleRate
和 通道 layout
建立新的 AVAudioFormat 。
[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
- 屬性