Bug in set StatusBar Style in iOS 10.1 Xamarin(iOS) - ios

I am struggling last 30 Mintues to change the StatusBar Style to Dark so that. My Text and Icon are display as White. I try lots of thing But nothing is work for me.
Problem Image :
What I have tried :
1. In the AppDelegate.FinishedLaunching() file add the following way
UIApplication.SharedApplication.SetStatusBarStyle(UIStatusBarStyle,LightContent, false);
2. Add below code in ViewdidLoad method
NavigationController.NavigationBar.BarStyle = UIBarStyle.Black;
3. change the info.plist.
But nothing is Help for me.
Any Help will be Appreciated.

Set Status bar style to "Light"
Select plist source and add key-value pair i.e "View controller-based status bar appearance" -> "No"

Related

Can't see time at the top of my app because the top bar is dark

So this is a pretty dumb question. But the color scheme of the app includes a lot of black, including the top bar, this hides the black characters of the time. Is there any way to get the time to show up white instead of black specifically for this app? Or should I just change the color scheme.
This should make it white
override var preferredStatusBarStyle: UIStatusBarStyle { return .lightContent }
You can go to Project target and change the property like:
Changing Status Bar Style to Light Content will change it for your full app.
Please comment if you have any questions.
Happy to help!

UITabBar first item title overlapping

I'm using tabbar with four tabs with title. I'm setting different color for selected and unselected tabs. But only for the first tab, the selected and unselected colors & title are getting overlapped. Whenever I'm selecting first tab, title is getting added again and again. I have attached screenshot as well.
In storyboard
Anyhelp could be appreciated. Thanks in advance.
You problem is most likely from the color you use for unselectedItemTintColor, which you have set to have transparency. This color should probably be solid. Try changing it to a solid version of what you want to see, like #EB989E.
Also be aware that you are setting an internal property, and as such it may change or disappear in a future release of iOS.

How can I hide the status bar in VS Code?

How can I hide the status bar in Visual Studio Code?
It should be possible to hide the status bar. Is there any way to hide it?
In the "View" menu, I cannot find an option to hide it.
View > Appearance > Show Status Bar
Screenshot from version 1.42.0
At version 1.4, go to View-> Toggle status bar
View > Appearance > Show/Hide Status Bar
I think you should have a try at this...
Go to Tools(at the Menu Bar)->Options(at the bottom)->General->Show Status Bar(Uncheck it ) and then press OK.
Find your key bindings preferences by entering ctrl + P. That will take you to your control panel and vscode even makes it easier to change the keys by only needing to press the keys. search for statusbar and just set it to something else like I did here. I toggle when I want to see it.
Right now the team have not open the permission for customising status bar (I mean show/hide, or change it to another colour).
But there has been a feature request about that. Others could trace this issue there:
https://github.com/Microsoft/vscode/issues/1884
Guy above nearly had it -
Tools(at the Menu Bar)->Options(at the bottom)->General->Environment > Status Bar
100% works
Open the settings.json and add:
{
// hide menu-bar, can be displayed pressing the Alt key
"workbench.activityBar.visible": false,
// Alt key no longer displays the menu-bar (useful when using i3 on Linux)
"window.menuBarVisibility": "hidden"
}
In VSCode 1.36
Go to Menu View -> Appearances -> Show Status Bar
This will enable back on check and hide on uncheck.
press : ctrl+shift+P -> Open settings (JSON) -> "workbench.statusBar.visible": true,
As of today, 17 Feb 2020, with the latest version of VSC.
Just press the settings icon at the bottom left of your screen. A new tab opens in the editor. Go to workbench then appearance and find the status bar and check the visibility box.
Easily. to hide, left-click on status bar.
to show, (v1.4 .. 1.58) go on view. then appearance.
In case someone wants to hide certain items from the status bar instead of disabling it completely:
Right click on status bar and untick items:
Go to Options->Environment->General->Uncheck show status bar->Ok

How to modify the iPhone status bar on a jailbroken iPhone?

I want to create a tweak to add a text to the status bar. The text will be appended to the time label. So what is the the hooked class and method.
You cannot hook a status bar.
You can just change its style and hidden properties.
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/index.html#//apple_ref/c/tdef/UIStatusBarStyle

How to set status bar tint color on iOS 6?

As shown on Apple's September 2012 keynote, the status bar tint color varies between apps in iOS 6. For instance, Safari and Maps use a black status bar whereas Mail adds a blue tint to it.
Is it possible to set that tint color, or at least force it to black?
You can do it from the plist like Comradsky mention or in xcode 4.5, they added an option for it in the project summary.
Update:
several people were confused by this answer. Just to clarify, you cannot set the status bar tint to any color you want. What is described above is only to change the status bar tint during launch and choose the iOS 6 default status bar color behavior (which picks the color of the bottom row of pixels from your navigation bar).
I've just found how to do it !
In your "Project Summary", in "Status Bar", set "Style" and "Tinting" to "Default.
Then, jump into you xib or storyboard and add a UINavigationBar just below the status bar.
Set the UINavigationBar "Style" to "Default" and select the "Tinting" of your choice.
Run! :-)
If, like me, you don't want any UINavigationBar visible in your Interface, all you want to do is putting the UINavigationBar behind all the Objects, or set the "Alpha" to zero.
You can do that in a tricky way..
In the Project Summary select Status Bar Style Black Transculent from the drop down menu.
In application: didFinishLaunchingWithOptions: enter the following line of code:
self.window.backgroundColor = [UIColor greenColor]; //example color
It works fine for me.
The tint color seems to be determined by the average color of the bottom pixel row of the app's header bar.
See here:
http://www.cultofmac.com/173928/how-ios-6s-cool-new-adaptive-status-bar-works/
It is very easy to do:
just put up an UINavigationBar in your .xib/storyboard, make sure the style is default.
then add a tint. no matter how many views, with different tinted UINavigationBar's, you have your status bar will change its color.
There is no way in iOS 5. You can just change your bar style.
In iOS 6 you can do it in the info.plist:
It is now possible to set status bar tint parameters in your app’s
Info.plist file. You might do this to ensure that the status bar color
matches the navigation bar color of your app during startup. To set
the status bar tint, add the UIStatusBarTintParameters key to your
Info.plist file. The value of this key is a dictionary with the
appropriate values describing the navigation bar your app has at
startup time. Inside the dictionary should be the UINavigationBar key,
whose value is also a dictionary. That dictionary contains the initial
navigation bar’s style (with the Style key) and whether it’s
translucent (with the Translucent key). If your navigation bar uses
them, you can also specify its tint color (with the TintColor key), or
the name of its custom background image (with the BackgroundImage
key).
Check out this link here
Edit:You can also do this in the project summary.

Resources