Questions tagged [appearance]
333 questions
3
votes
1 answer
UIButton and Appearance API - supported or not?
According to the UIAppearance protocol reference a class need to conform to the UIAppearanceContainer and have supported methods marked with UI_APPEARANCE_SELECTOR in order for the appearance proxy to work properly. In Apples own instruction video…

jollyCocoa
- 691
- 7
- 20
3
votes
0 answers
UIBarButtonItem Appearance and first Application Start
we use the appearance system of iOS 5 to style our application, we also style the UIBarButtonItem like this:
[[UIBarButtonItem appearance] setBackgroundImage:button
forState:UIControlStateNormal…

SebastianStehle
- 2,409
- 1
- 22
- 32
3
votes
3 answers
Graphics issue with segmentedControl and UIAppearance proxy
I have an app with a segmentedControl in the titleBar, which is used to switch between 3 navigation controllers. I am using the new appearence proxy methods to style this segmentedControl (code below). However, there seems to be some sort of bug…

Sebastian
- 2,889
- 4
- 34
- 37
3
votes
1 answer
Java3d: Texture is not applied to OBJ model properly
I load a 3d model of a torus (obj file) into my program, using these lines:
Shape3D torus=null;
Scene t1 = getSceneFromFile("Some local path\torus.obj");
Then I grab the model from the scene using this code:
BranchGroup branchGroup =…

Pouya
- 1,266
- 3
- 18
- 44
3
votes
0 answers
Is there any way to add the jupyter style into google colab?
Is there any way to add the jupyter style into google colab?
I really prefer the look and dont like neither light nor dark theme

Gfanis
- 31
- 3
3
votes
1 answer
BLUETOOTH - Linux: Changing advertisement of appearance with bluetoothctl fails
I like to use a RaspberryPi to act as HeartRate Sensor and transmit these data via BLTH to other Health/Sport-Apps.
Finally all is working fine with python and bluez I'm able to create a BLTH GATT Server and advertise HR-Data via Service…

KingPo
- 93
- 2
- 6
3
votes
1 answer
Whether iPad 4.3 simulator is supporting UIKeyboardAppearanceAlert or not?
I have used this code:
myTextField.keyboardType = UIKeyboardTypeNumberPad;
myTextField.keyboardAppearance = UIKeyboardAppearanceAlert;
But when I run my project in iPad simulator 4.3, keyboard appearance is not getting changed?
It looks like the…

Mrunal
- 13,982
- 6
- 52
- 96
3
votes
6 answers
How can I generate some Python scripts based on different conditions nicely?
I want to generate some Python scripts based on different conditions. It means: I have a constant body of my Python scripts, which is exactly the same in all the different conditions, but due to the fact that I have several different conditions,…

Mithridates the Great
- 473
- 1
- 4
- 14
3
votes
1 answer
Custom NSView background color not changing when switching in and out of dark mode
I cannot figure out how to update the background color of my custom NSView when the user switches in and out of dark mode.
I've read the documentation and followed instructions here:detecting darkmode
The strange thing is that I can get all the…

pjg
- 565
- 4
- 19
3
votes
1 answer
Use jquery to make div appear after a user scrolls
I'd like to have a div appear after a user scrolls down on a page, and disappears if they scroll back to the top.
I thought using the .scroll() function in jquery would be useful, but couldn't quite figure out how to make this happen.
Any help…

Andelas
- 2,022
- 7
- 36
- 45
3
votes
1 answer
CodeGlance Plugin wont change the appearance of the editor in AndroidStudio
I'm trying to change the appearance of my editor in Android Studio. In File => Settings => Plugins => Browse Repositories I installed a Plugin called CodeGlance. After the restart of the editor, the editor should have looked different but I have…

ConanCode
- 362
- 2
- 4
- 18
3
votes
3 answers
.Net - Detecting the Appearance Setting (Classic or XP?)
I have some UI in VB 2005 that looks great in XP Style, but goes hideous in Classic Style.
Any ideas about how to detect which mode the user is in and re-format the forms on the fly?
Post Answer Edit:
Thanks Daniel, looks like this will work. I'm…

Chris
- 33
- 2
- 7
3
votes
3 answers
How do I customize Jenkins theme?
I want to change background images, logo ,headings and add some buttons.
I have the following UI related plugins installed
1) Simple Theme Plugin
A plugin for Jenkins that supports custom CSS & JavaScript. You can customize Jenkins's appearance (ex.…

Triangle
- 1,477
- 3
- 22
- 36
3
votes
4 answers
How to turn off the dotted line between lines in Eclipse?
I just downloaded the ADT from google which included the Juno version of Eclipse.
After making a project however, the default text editor has this horrible dashed / dotted line between every horizontal line. It's a pain to look at, but Eclipse's…

jorxster
- 217
- 2
- 11
3
votes
2 answers
Control's Enabled appearance at design time?
I defined a custom button class, which sets background color when button is enabled/disabled.
Enabled appearance at runtime (A):
Disabled appearance at runtime (B):
Design time appearance is always (A), regardless of the value of Enabled…

Victor Zakharov
- 25,801
- 18
- 85
- 151