UIWindow * statusWindow = [[UIWindow alloc] initWithFrame:[UIApplication sharedApplication].statusBarFrame];
[statusWindow setWindowLevel:UIWindowLevelStatusBar + 1];
[statusWindow setBackgroundColor:[UIColor clearColor]];
UILabel * statusLabel = [[UILabel alloc] initWithFrame:statusWindow.bounds];
statusLabel.text = @"RSSI:";
statusLabel.textColor = [UIColor blueColor];
statusLabel.textAlignment = NSTextAlignmentCenter;
statusLabel.backgroundColor = [UIColor redColor];
[statusWindow addSubview:statusLabel];
[statusWindow makeKeyAndVisible];