按钮有上半部分透明和另一半标题

时间:2014-03-20 08:52:46

标签: ios iphone objective-c cocoa-touch uibutton

我有一些要求准备像Image 1这样的用户界面:
enter image description here

但有时候我觉得它(标题消失了)
enter image description here

我不确定为什么会这样。 背景图像第二个具有半透明和半图像(刷新图像),我需要显示文本。

修改
XIB设置:
enter image description here enter image description here
对此有何想法或解决方案?

请提出一些其他方法来实现这一目标。

2 个答案:

答案 0 :(得分:0)

我刚刚在UIstoryboard找到了,为什么不以这种方式尝试

enter image description here enter image description here

您可以根据需要使用标题属性配置此UIButton,对吗?

答案 1 :(得分:0)

根据您的评论=> 标题的颜色将从服务器配置。

然后可能有时你会从服务器获得按钮标题的 clearColor ,这样你就无法显示按钮的标题。要解决这个问题,你需要设置像

这样的条件
if(ButtonTitleColor is "clearColor")
  [myButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; // here set color whatever you want.