草庐IT

UIBUTTON

全部标签

iphone - 设置 UIButton 字体

我有以下用于在UIButton中设置文本的代码[self.fullListButton_setTitle:[NSStringstringWithFormat:@"%d",[self.newsfeedItem_.newsfeedToSubjectscount]-3]forState:UIControlStateNormal];问题是我似乎无法为此设置字体。我该怎么做? 最佳答案 在较新版本的iOS中:UIButton*myButton;myButton.titleLabel.font=[UIFontsystemFontOfSize:1

ios - 带有渐变、圆角、边框和阴影的 UIButton

网站上有几个类似的问题,但我正在寻找一些具体且略有不同的问题。我按照此处给出的指示进行操作:http://www.cimgf.com/2010/01/28/fun-with-uibuttons-and-core-animation-layers/继承UIButton以创建一个通用类,我可以在其上指定渐变颜色,而不是尝试使用静态图像。我遇到了一个问题,按钮层上的setMasksToBounds要么允许a)投影显示,但也允许渐变层显示超出圆角或者B)渐变图层裁剪到圆角,但不允许投影显示我对这个问题的解决方案似乎很笨拙(虽然它有效)我想看看是否有人知道更好和/或更清洁的方法来完成同样的事情。

ios - 带有渐变、圆角、边框和阴影的 UIButton

网站上有几个类似的问题,但我正在寻找一些具体且略有不同的问题。我按照此处给出的指示进行操作:http://www.cimgf.com/2010/01/28/fun-with-uibuttons-and-core-animation-layers/继承UIButton以创建一个通用类,我可以在其上指定渐变颜色,而不是尝试使用静态图像。我遇到了一个问题,按钮层上的setMasksToBounds要么允许a)投影显示,但也允许渐变层显示超出圆角或者B)渐变图层裁剪到圆角,但不允许投影显示我对这个问题的解决方案似乎很笨拙(虽然它有效)我想看看是否有人知道更好和/或更清洁的方法来完成同样的事情。

iphone - 尝试使用 UI 自动化点击 UITableViewCell 中的 UIButton 失败,返回 "could not be tapped"

我有一个iPhone应用程序,我正在使用UIAutomation进行测试。我在UITableViewCell中有一个按钮,但是当我尝试使用UIAutomation点击​​它时,出现以下错误。ScriptthrewanuncaughtJavaScripterror:target.frontMostApp().mainWindow().scrollViews()[0].elements()[element_name].tableViews()[0].elements().firstWithPredicate(namecontains[c]'Brooklyn').elements()["de

iphone - 尝试使用 UI 自动化点击 UITableViewCell 中的 UIButton 失败,返回 "could not be tapped"

我有一个iPhone应用程序,我正在使用UIAutomation进行测试。我在UITableViewCell中有一个按钮,但是当我尝试使用UIAutomation点击​​它时,出现以下错误。ScriptthrewanuncaughtJavaScripterror:target.frontMostApp().mainWindow().scrollViews()[0].elements()[element_name].tableViews()[0].elements().firstWithPredicate(namecontains[c]'Brooklyn').elements()["de

ios - 如何以编程方式设置 UIButton 的垂直对齐方式 - iOS

我知道如何使用IB设置按钮的垂直对齐方式;见here.但我不能以编程方式做到这一点......这是我尝试过的事情之一:UIButton*button=[[UIButtonalloc]initWithFrame:CGRectMake(10,10,110,130)];[buttonsetTitle:@"Align"forState:UIControlStateNormal];button.backgroundColor=[UIColorwhiteColor];button.titleLabel.textColor=[UIColorgrayColor];[buttonsetContentVe

ios - 如何以编程方式设置 UIButton 的垂直对齐方式 - iOS

我知道如何使用IB设置按钮的垂直对齐方式;见here.但我不能以编程方式做到这一点......这是我尝试过的事情之一:UIButton*button=[[UIButtonalloc]initWithFrame:CGRectMake(10,10,110,130)];[buttonsetTitle:@"Align"forState:UIControlStateNormal];button.backgroundColor=[UIColorwhiteColor];button.titleLabel.textColor=[UIColorgrayColor];[buttonsetContentVe

objective-c - 如何从 UIButton 获取图像?

我的应用程序中有自定义按钮,我在其中设置了图像。我想从按钮获取图像并存储在UIImage变量中。请指导我。 最佳答案 这个怎么样?UIImage*img=[buttonimageForState:UIControlStateNormal]; 关于objective-c-如何从UIButton获取图像?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/4827117/

objective-c - 如何从 UIButton 获取图像?

我的应用程序中有自定义按钮,我在其中设置了图像。我想从按钮获取图像并存储在UIImage变量中。请指导我。 最佳答案 这个怎么样?UIImage*img=[buttonimageForState:UIControlStateNormal]; 关于objective-c-如何从UIButton获取图像?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/4827117/

ios - 在 UIButton 中放置一个 UIActivityIndi​​cator

我知道我遗漏了一些愚蠢的东西,但无论如何,这是我的代码:UIActivityIndicatorViewindicator=[[UIActivityIndicatorViewalloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];indicator.hidesWhenStopped=YES;indicator.frame=btnLogin.frame;indicator.center=btnLogin.center;[self.viewaddSubview:indicator];[indicatorbr