有人可以帮我提供一些小样本如何获取SBStatusBarController实例吗?我看了很多论坛和源代码,但它对我不起作用:(
谢谢你。
最佳答案
好的,我找到了一种在没有SpringBoard且使用合法方法的情况下如何显示双倍高度状态栏(如通话状态栏)的方法。这是一个解决方案。有两种方法可以在应用程序处于后台模式时显示带有应用程序名称的双高状态栏:使用套接字连接到VoIP服务或模拟音频记录。使用第一种方法,您将看到绿色的发光状态栏,如果您喜欢红色,则必须使用第二种。好的,我使用第二种方法并执行录音模拟。为此,只需将以下字符串添加到应用程序的PLIST配置文件中:
<key>UIBackgroundModes</key>
<array>
<string>voip</string>
<string>audio</string>
</array>
它会告诉iOS,您的应用程序将在后台使用音频和VoIP。现在的代码。我们将模拟从麦克风到NULL设备的音频记录:
- (void) startRecording
{
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
NSError *err = nil;
[audioSession setCategory :AVAudioSessionCategoryPlayAndRecord error:&err];
if(err){
NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
return;
}
[audioSession setActive:YES error:&err];
err = nil;
if(err){
NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
return;
}
recordSetting = [[NSMutableDictionary alloc] init];
[recordSetting setValue :[NSNumber numberWithInt:kAudioFormatLinearPCM] forKey:AVFormatIDKey];
[recordSetting setValue:[NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
[recordSetting setValue:[NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];
[recordSetting setValue :[NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey];
[recordSetting setValue :[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsBigEndianKey];
[recordSetting setValue :[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsFloatKey];
NSURL *url = [NSURL fileURLWithPath:@"/dev/null"];
err = nil;
recorder = [[ AVAudioRecorder alloc] initWithURL:url settings:recordSetting error:&err];
if(!recorder){
NSLog(@"recorder: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
UIAlertView *alert =
[[UIAlertView alloc] initWithTitle: @"Warning"
message: [err localizedDescription]
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
[alert release];
return;
}
//prepare to record
[recorder setDelegate:self];
[recorder prepareToRecord];
recorder.meteringEnabled = YES;
BOOL audioHWAvailable = audioSession.inputIsAvailable;
if (! audioHWAvailable) {
UIAlertView *cantRecordAlert =
[[UIAlertView alloc] initWithTitle: @"Warning"
message: @"Audio input hardware not available"
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[cantRecordAlert show];
[cantRecordAlert release];
return;
}
// start recording
[recorder record];//recordForDuration:(NSTimeInterval) 40];
}
将此方法添加到您的应用程序委托(delegate)中,然后从didFinishLaunchingWithOptions对其进行调用。另外,据我了解,您可以将 Audio Session 类别设置为AVAudioSessionCategoryPlayAndRecord并将其激活。如果将此代码添加到项目中,那么如果您将应用程序置于后台,则会看到一个双高状态栏,其中包含您的应用程序名称。
我认为就这些。
谢谢。
关于ios - SBStatusBarController实例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7246306/