如何在iPhone中以递增/递减顺序获取日期
在我的应用程序中,我在中间位置及其左侧和右侧有标签。右位置出现上一个和下一个按钮。标签显示当前日期。 &每当我单击下一个按钮时,它都会显示日期加一,如果是上一个按钮,则反之亦然。如何实现这个......
IN my app i have label at middle position and its left & right position previous and next button occur. label shows current date. & whenever i clicked on next button its shows date incremented by one and vice-versa in case of previous button. how to achieve this......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@sugita 上一个按钮的 IBAction 方法将增量日期减少 1(即 -1 表示增量日期),每次单击上一个按钮时,都会减少您提供给的增量日期标签。这就像你增加它一样明智
希望你理解!
@sugita on the
IBAction
method of your previous button decrease the incremented date by 1 (i.e -1 for the incremented date),on every click of your previous button decrease the incremented date which u are giving to the label.It is like wise u r increasing itHope u understand!