如何在ios应用程序中的某些时间显示消息

时间:2016-08-21 07:18:13

标签: ios swift

如果应用正在运行,我需要我的应用在一天的特定时间为用户显示消息。如何引用用户设备的当前时间?非常感谢!

1 个答案:

答案 0 :(得分:1)

您可以使用NSDate类来获取当天的时间。例如:

Realm localRealm = Realm.getInstance(RealmUtility.getRealmConfig(mContext));
try {
     TotalTransaction totalTransaction = localRealm.where(TotalTransaction.class).equalTo("pk", totalTransactionPk).findFirst(); // returning null so doesn't enter inside if block
 if (totalTransaction != null && totalTransaction.isLoaded()) {
  // run algorithm and other related works based on realm results
 } catch (Exception e) {
  e.printStackTrace();
 } finally {
  if (localRealm != null) localRealm.close();
 }