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.
我的故事板上有一个日期选择器,但我不希望它默认为今天的日期。我希望日期从 1998 年 7 月 15 日开始。在属性检查器中,我将日期设置为该日期,它显示在我的故事板上,但是当我启动应用程序时,它仍然是今天的日期。我还需要做些什么才能让它工作吗?
[yourDatePicker setDate:[NSDate dateWithTimeIntervalSince1970:900478800]];
或者如果你想变得花哨:
[yourDatePicker setDate:[NSDate dateWithTimeIntervalSince1970:900478800] animated:YES];
你可以把它放在你的viewDidLoad中: