我尝试使用以下代码在javascript中连接到我的解析服务器:
class YourCustomizeTableViewCell: UITableViewCell {
let collectionView: CollectionView
...
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "HorizontalSlideCell", for: indexPath) as! YourCustomizeTableViewCell
cell.collectionView.tag = indexPath.row
return cell
}
...
func collectionView(_ collectionView: UICollectionView,
cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "InnerCollectionViewCell",
for: indexPath as IndexPath)
//indexPath.section is the collectionview section index but needs to be its parent tableview section's index. How do I get it?
cellCharLabel?.text = Languages.sharedInstance.alphabets[collectionView.tag].set[indexPath.row].char
...
return cell
}
我收到以下错误:
Parse.initialize("myappid", "myclientkey");
Parse.serverURL = "http://myserver.com/parse";
当我使用完全相同的凭据初始化我的iOS项目时,该应用程序似乎工作正常。知道为什么吗?
谢谢!
答案 0 :(得分:1)
确保您已在EC2 AWS服务器上打开所需的端口。您列出的地址假定为端口80.默认情况下,Parse在端口1337上侦听。
因此,要么将您的解析服务器配置为在端口80上启动,要么打开端口1337并使用http://server.com:1337/parse进行连接。