I have a UIButton
in a Storyboard scene. The button has a User-Defined-RunTime-Attribute 'type'(String) configured. When pressed the button calls
-(IBAction)pressedButton:(id)sender
Will I be able to access the User-Defined-RunTime-Attribute from 'sender'?
Yes:
Note that you cannot use a User Defined Run Time attribute, unless you subclass UIButton and add it as a strong property, for example
If you set a User Defined Run Time attribute, and you have not done this, Xcode will badly crash unfortunately.
You can then get that value like