I have a UIView in Interface builder (Xcode 4.1)that has its alpha set to 0.1 . On top of that view, there are some UIbutton objects. These buttons are children of that view, not simple positioned on top of it - this I clearly see in the object explorer. The problem is, those buttons inherit the alpha settings from their parent view. How can I turn this alpha inheritance off?
How to "turn off" transparency inheritance from UIView to controls inside the view in IB?
288 Views Asked by Earl Grey At
1
There are 1 best solutions below
Related Questions in INTERFACE-BUILDER
- Sheets in UIKit
- I can't understand what the problem with the Navigator Controller
- Cannot find Interface Builder Preview in Xcode 15
- Set maxwidth on UITextfield
- Custom Font for iOS Only shows if Added in IB?
- How would I use Interface Builder with CNContactViewController in iOS using Xcode and Swift?
- How to change a button's background color
- Why is my UIStackView's fill proportionally distribution property not working as expected?
- Xcode 15 beta 2 - Build Error: "Failed to find or create execution context for description '<IBCocoaTouchPlatformToolDescription: 0x600002588860>'"
- Xcode example of universal .app with assembly intel .s file and arm .s file
- NSUnknownKeyException when connecting property IB
- How to add layout widget to contain your input and eye icon
- ContentHuggingPriority and CompressionResistance not honored by StackView with custom control as subview
- Xcode constraints not changing equally
- iOS: Navigation Style: Navigator, Browser, Editor
Related Questions in ALPHA
- Blender to Unity Vertex Color (Alpha) Data Doesn't Work
- How to calculate pooled Cronbach's Alpha after multiple imputation
- PyQT5 QAbstractVideoSurface: Play Video with alpha channel (on windows)
- How do I control the alpha of a geom_point fill?
- How to improve color layer mask to have mid tones?
- how do I change the alpha channel along a path in cairo?
- Compare theoretical and empirical alpha
- REST API to identify Stable Maven Version of any Maven dependency
- How to set p5.js alpha channel transparency in a shader?
- How to add transparency values correctly?
- THREE.js GLTFLoader alpha does not show transparency(shows white background instead)
- "Replacement has x rows" error in code that previously worked (geom_sf/gganimate/shadow_mark)
- overlapping colors in ggplot geom_point
- Three Fiber not showing transparent png texture
- Is the alpha flag for the canvas tag getContext function advisory only?
Related Questions in VISUAL-INHERITANCE
- How do I 'revert to inherited' if control is not clickable?
- Can i know in the parent Form if an inherited Form has subscribed to the Show event?
- How to get the size of an inherited form in the base form?
- How can I change the order of ToolButtons in a inheritable form?
- How can I get visual inheritance working at high dpi values?
- All control's properties disabled in Visual Studio
- C# Child Form Inheriting a Control from Parent Form
- How to auto update many descendants forms after ancerstor form had an control deleted?
- cannot add items to ContextMenuStrip on inherited winform
- WinForms MDI inherid form has different propertie values in parent?
- Visual Studio crashes while setting the modifier of base UserControl to protected
- Use base BindingSource as derived Form datasource
- Visual inheritance of DB components or New component?
- Controls on inherited form are locked, can it be undone?
- Sharing code between derived forms
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Old question, I know. I was just hoping for the same (although it does not make much sense) and tripped over this. No, it's not possible. The alpha value is always inherited from the parent value, overall transparency of the child view is a combination of own and parent's alpha.
I'm not sure but there should not be any problems caused by placing the buttons on top of the 'container' view instead of inside it. If you absolutely need a common handle for them you can wrap everything in e.g. another
UIView.