我使用Estimote室内位置示例来制作位置列表。但位置列表为空。我认为App的问题无法找到我的estimote云。请告诉我如何解决问题。
代码:
weak var weakSelf:ListViewController? = self
let onSuccess:(AnyObject!) -> (Void) =
{ (locations:AnyObject!) in
weakSelf!.ownLocationsArray = locations as! NSMutableArray
weakSelf!.tableView.reloadData()
weakSelf!.hadError = false;
self.finishedSectionRefresh()
}
self.manager.fetchUserLocationsWithSuccess(onSuccess, failure: onFailure)
答案 0 :(得分:0)
为了使应用能够找到"您的Estimote Cloud帐户,您需要使用ESTConfig
的{{1}}方法。您可以在以下位置生成令牌:
https://cloud.estimote.com/#/apps/add/your-own-app
由于您正在使用Swift编写,因此可能需要将setupAppID:andAppToken:
添加到Objective-C桥接标题中,以便您的应用可以访问#import <EstimoteSDK/EstimoteSDK.h>
类。