更改背景颜色相对于放入 TableViewCell 中的 UISlider 值的渐变
我是目标 C 的新手。我想更改放置在单元格中的标签的背景颜色的渐变 相对于放置在同一单元格中的 UIslider。 当滑块从左向右移动时,背景颜色的渐变应该发生变化。 谁能指导我该怎么做???
i am new to objective C. I want to Change the gradient of background color of a Lable placed in the Cell
with respect to the UIslider placed in same cell.
As the slider moves from Left to Right the gradient of the Background color should change.
Can anyone guide me how to do it???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此代码将根据滑块值的变化更改 UILabel 背景颜色的 alpha。
首先,您需要在自定义单元格中声明滑块。如下所述。
在 SignUpCustomCell.h 单元格中声明滑块。
在 SignUpCustomCell.m 文件中分配内存。
创建自定义单元格后。您将在您想要的地方使用它。
在 SignupViewController.m 中使用自定义单元格。我们需要以下步骤。
然后在cellForRowAtIndexPath中编写代码。
如果您有任何疑问,请告诉我。
This code will change alpha of background color of UILabel as per slider value change.
first you need to declare slider in custom Cell. as describe bellowed.
Declare slider in SignUpCustomCell.h cell.
alloc memory in SignUpCustomCell.m file.
After creating custom cell.You will used it where you want.
To used custome cell in SignupViewController.m . we need following steps.
Then write code in cellForRowAtIndexPath.
Let me know if you have any query.