gpt4 book ai didi

ios - xcode UIImageView cornerRadius 只有一侧

转载 作者:行者123 更新时间:2023-11-29 12:35:10 24 4
gpt4 key购买 nike

enter image description here

如何使用 cornerRadius 做到这一点,而且我正在使用 UIImageView

最佳答案

你想做的就是

  1. 首先你应该通过添加 QuartzCore.framework 单击您的项目 - 它位于导航器区域的左侧 然后单击目标的项目名称(位于项目左侧下方) 选择构建阶段。如果您选择它,您可以看到 4 个选项。 然后单击“将二进制文件与库链接”。单击后,只需键入 Quartzcore。它显示了该框架。然后只需添加它。

  2. 在您的相关 View Controller 中导入#import。

  3. 在您的 .m 部分执行以下代码

     yourImage.layer.cornerRadius = 5.0; //For Example i give 5.0.So just give your required size.
    yourImage.layer.borderWidth = 3.0f;
    yourImage.layer.borderColor = [UIColor whiteColor].CGColor; //just give the color whatever you want
    yourImage.clipsToBounds = YES;

一旦成功请告诉我。

关于ios - xcode UIImageView cornerRadius 只有一侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26560878/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com