Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NSDate 変数があり、時間のみを変更したい (日付は変更しないでください)。出来ますか ?
例: ユーザーは DatePicker 日付で日付間隔を選択します (開始日の場合は時間を 00:00:00 に設定し、終了日の場合は時間を 23:59:59 に設定します)
ご協力いただきありがとうございます。
よろしく、アレックス。
オブジェクトはNSDate変更できません。
NSDate
そこから新しいNSDateオブジェクトを作成できます。- (id)dateByAddingTimeInterval:(NSTimeInterval)secondsメソッドを見てみましょう。
- (id)dateByAddingTimeInterval:(NSTimeInterval)seconds
NSDate *newDate = [endDate dateByAddingTimeInterval:24.0f * 60.0f * 60.0f - 1.0f];