literal formatting fail
NSDictionary *settings = @{
AVEncoderAudioQualityKey : @(AVAudioQualityMax)
};
instead of
NSDictionary *settings = @{AVEncoderAudioQualityKey : @(AVAudioQualityMax)};
I saw there is a bug for this with macros, so I'm presuming there is not a bug for this in standard code.. how can I get it to format properly, because I can't believe that you guys have shipped the literal support in this state.. clearly I'm doing something wrong.
请先登录再写评论。
I knew it was me and not you guys !
:D
so others know - you need to set "simple blocks on one line" setting in wrapping preferences.