You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to have ability to add untyped actions to any Row object.
Problem: I can't add the same action to differently typed TableRow objects because it required type matching. Even more, it not possible to split code and move code that built views (creating rows with particular cell) away from code that react on user input (some general actions).
Intent: Some actions aren't required to know what kind of object is passed to cell or what kind of cell was targeted. Allow to add general action to objects that covered by protocol Row.
The text was updated successfully, but these errors were encountered:
I want to have ability to add untyped actions to any Row object.
Problem: I can't add the same action to differently typed TableRow objects because it required type matching. Even more, it not possible to split code and move code that built views (creating rows with particular cell) away from code that react on user input (some general actions).
Intent: Some actions aren't required to know what kind of object is passed to cell or what kind of cell was targeted. Allow to add general action to objects that covered by protocol Row.
The text was updated successfully, but these errors were encountered: