菜鸟教程小白 发表于 2022-12-12 18:57:14

iphone - iOS : Move forward dynamically NSDate with button


                                            <p><p>我已经为我的日期创建了一个自定义类,并且需要通过按钮向前和向后移动日期。这是我显示今天日期的代码:</p>

<pre><code>- (NSString *) showToday {

    NSCalendar *myCal = [ initWithCalendarIdentifier:NSGregorianCalendar];   
    NSDateFormatter *dateFormatter = [ init];

    ;

    offsetComponents = [ init];
//shows today
    ;

    NSDate *nextDate = options:0];

    ;
    NSString *currDay = ;

    ;

    ;
    ;
    return currDay;
}
</code></pre>

<p>在我的 viewController 上:</p>

<pre><code>customClass = [init];

    day.text = ;
</code></pre>

<p>所以如果我需要提前一个日期,我只需将此行代码更改为:</p>

<pre><code>//show tomorrow
;
</code></pre>

<p>那么如何通过按钮动态更改此行并更改日期?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以为您的 <code>offsetComponents</code> 变量声明一个 <code>int</code>。然后:</p>

<pre><code>- (IBAction)moveDatesForward:(id)sender {

    NSCalendar *persCalendar = [ initWithCalendarIdentifier:NSPersianCalendar];   
    NSDateFormatter *dateFormatter = [ init];
    NSLocale *IRLocal = [ initWithLocaleIdentifier:@&#34;fa_IR&#34;];
    ;
    ;

    offsetComponents = [ init];

    offsetComponents.day = _dayNumber;

    NSDate *nextDate = options:0];

    ;
    dayLabel.text = ;

    ;

    ;
    ;

      _dayNumber ++;

}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - iOS : Move forward dynamically NSDate with button,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8934983/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8934983/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - iOS : Move forward dynamically NSDate with button