在Smartface App Studio中添加数据集时出错以及有关local.notifications的错误

时间:2015-01-15 22:31:39

标签: android ios cross-platform smartface.io

我是第一个在Smartface App Studio上开发的移动应用程序。我有问题。

1-我在添加第二个数据集时看到此错误:Access violation at address 00000000. Read of address 00000000。并且在删除数据集之前不会在模拟器或usb真实电话上运行应用程序。

2-我阅读了Local.Notifications指南,但无法在手机屏幕上运行通知。我将日期保存到表中但不能将它们作为提醒。我应该在哪个页面添加功能块,我应该怎么做。

感谢。

1 个答案:

答案 0 :(得分:0)

添加数据集时似乎出现了问题。你尝试过第二个项目了吗?它似乎与最新版本的Smartface App Studio一起使用,可通过帐户页面下载。

本地通知未添加到日历/提醒中。这些是特定于应用的通知。

首先,你应该创建一个本地通知。

例如;

var localNotification = new Notifications.LocalNotification({
        id : id,
        fireDate : new Date(),
        alertTitle : "AlertTitle",
        alertBody : "Alert Body",
        smallIcon : "icon_notification_small.png",
        launchImage : "icon_notification.png",
        sound : "notifsound.mp3",
        repeatInterval : Notifications.CalendarUnit.minute,
        onReceivedNotification : function (e) {
            alert("onReceived");
        }
    });

它会为您创建通知,并在指定日期生效。

如果您想立即显示通知,则应在下面运行该代码;

Notifications.local.presentNotification(localNotification);