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
{{ message }}
This repository was archived by the owner on Jul 20, 2023. It is now read-only.
The tooltip with multiple parent lists doesn't work because the superview always need to be the global screen view. Out hierachy its
Table [
ACell [
Collection [
BCell << Element to set tip view
]
]
]
if we add the tooltip to BCell with the global superview the library don't understand the 'Y' position because the 'Y' position of the view its 0 (The cell its positionate on the 0 'Y' axis). the solution of this its remove the precondition to set the actual ACell as a superview and this cell has the correct 'Y' position. If i remove the precondition "works" because the library takes the vertical axis with his superview but with the horizontal axis to the view.
This library do not support multiple views inception.
I also try::
tooltip?.show(animated: true, forView: BCell, withinSuperview: collection)
tooltip?.show(animated: true, forView: BCell, withinSuperview: ACell) << This works but without the precondition
tooltip?.show(animated: true, forView: BCell, withinSuperview: Table)
tooltip?.show(animated: true, forView: BCell)