Package apple.uikit.protocol
Interface UIConfigurationState
-
- All Superinterfaces:
NSCoding,NSCopying,NSSecureCoding
- All Known Implementing Classes:
UICellConfigurationState,UIViewConfigurationState
public interface UIConfigurationState extends NSCopying, NSSecureCoding
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectcustomStateForKey(java.lang.String key)Returns the custom state for the specified key.java.lang.ObjectinitWithTraitCollection(UITraitCollection traitCollection)Returns a new instance with the specified trait collection.java.lang.ObjectobjectForKeyedSubscript(java.lang.String key)voidsetCustomStateForKey(java.lang.Object customState, java.lang.String key)Sets the custom state for the specified key.voidsetObjectForKeyedSubscript(java.lang.Object obj, java.lang.String key)voidsetTraitCollection(UITraitCollection value)UITraitCollectiontraitCollection()-
Methods inherited from interface apple.foundation.protocol.NSCoding
encodeWithCoder, initWithCoder
-
Methods inherited from interface apple.foundation.protocol.NSCopying
copyWithZone
-
Methods inherited from interface apple.foundation.protocol.NSSecureCoding
_supportsSecureCoding
-
-
-
-
Method Detail
-
customStateForKey
java.lang.Object customStateForKey(java.lang.String key)
Returns the custom state for the specified key.
-
initWithTraitCollection
java.lang.Object initWithTraitCollection(UITraitCollection traitCollection)
Returns a new instance with the specified trait collection.
-
objectForKeyedSubscript
java.lang.Object objectForKeyedSubscript(java.lang.String key)
-
setCustomStateForKey
void setCustomStateForKey(java.lang.Object customState, java.lang.String key)Sets the custom state for the specified key.
-
setObjectForKeyedSubscript
void setObjectForKeyedSubscript(java.lang.Object obj, java.lang.String key)
-
setTraitCollection
void setTraitCollection(UITraitCollection value)
-
traitCollection
UITraitCollection traitCollection()
-
-