Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的项目中使用 AQGridView。我们需要在每个图像周围创建一个黑色边框。谁可以帮我这个事。
提前致谢。
问候,贾斯。
您还可以将 AQGridView 放在一个较大的 UIImageView 中,该 UIImageView 为空但背景设置为黑色。
对于 UIImageView 它就像是:-
[imageView.layer setBorderColor: [[UIColor blackColor] CGColor]]; [imageView.layer setBorderWidth: 2.0];
希望它适用于 AQGridView ...
干杯