gpt4 book ai didi

iphone - 制作一个垂直的 UIButton

转载 作者:行者123 更新时间:2023-12-03 21:12:48 26 4
gpt4 key购买 nike

有没有办法让 UIButton 垂直显示,文本向下阅读,而不是横向显示?你能用IB或者编程的方式做到这一点吗?或者您需要使用 Photoshop 来制作自定义按钮吗?

干杯,山姆

最佳答案

// Define the transform
CGAffineTransform transform = CGAffineTransformMakeRotation(90 * (M_PI / 180));

// Initialize the UIView
UIView *myView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 320)];

// Do the transformation
// in this case, rotate the UIView 90 degrees
myView.transform = transform;

Source

关于iphone - 制作一个垂直的 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2032916/

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