如何显示像放大镜一样大的文本

时间:2018-08-13 12:38:25

标签: ios objective-c swift xcode label

我有一个带有收藏夹视图的应用程序,因为我在收藏夹视图项上的UILabel中显示了一些文本。我的文本大小大于标签大小,因为它无法完全看到文本。因此,我计划在保留文本时将其显示为更大的大小。有人可以帮我如何实现这一目标。作为参考,请参见屏幕截图。

enter image description here

在gmail中,当我们将鼠标悬停在电子邮件附件上时,它将显示下载并保存以驱动文本,就像用户保留文本时一样,它必须清楚地显示该文本。请参考截图。 enter image description here

1 个答案:

答案 0 :(得分:-1)

您可以通过以下方式在集合视图的单元格中使用SwiftPopTipView

func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath) {
    println("did select cell \(indexPath.row)")
    let cell = collectionView.cellForItemAtIndexPath(indexPath)
    let popTip = SwiftPopTipView()
    popTip.animation = .Slide
    popTip.popColor = UIColor.whiteColor()
    popTip.textColor = UIColor(netHex: 0x474747)
    popTip.dismissTapAnywhere = true
    popTip.message = "Test poptip" //***YOUR TEXT GOES HERE***
    popTip.presentAnimatedPointingAtView(cell!, inView: collectionView, autodismissAtTime: 1.5)
}

我希望它对您有用。编码愉快!