forked from shadowfacts/Tusker
Add peek/pop to profile headers
This commit is contained in:
parent
5cd68cf774
commit
29964a4cee
|
@ -112,3 +112,15 @@ class ProfileHeaderTableViewCell: UITableViewCell, PreferencesAdaptive {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extension ProfileHeaderTableViewCell: PreviewViewControllerProvider {
|
||||||
|
func getPreviewViewController(forLocation location: CGPoint, sourceViewController: UIViewController) -> UIViewController? {
|
||||||
|
let noteLabelPoint = noteLabel.convert(location, from: self)
|
||||||
|
if noteLabel.bounds.contains(noteLabelPoint),
|
||||||
|
let vc = noteLabel.getViewController(forLinkAt: noteLabelPoint) {
|
||||||
|
return vc
|
||||||
|
}
|
||||||
|
// TODO: should this also have peek/pop for avatar/header images?
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue