gpt4 book ai didi

ios - 在 xcode 中制作一个聊天应用程序

转载 作者:行者123 更新时间:2023-11-28 22:44:00 25 4
gpt4 key购买 nike

我正在尝试使用 http://www.parse.com 在 xcode 中制作我的第一个应用程序.我几乎是在复制 this guys说明,当我开始输入此代码时出现错误

PFObject *testObject = [PFObject objectWithClassName:@"TestObject"];
[testObject setObject:@"bar" forKey:@"foo"];
[testObject save];

在 FirstViewController.m 文件中。

 #import "DMFirstViewController.h"
@interface DMFirstViewController ()
@end
@implementation DMFirstViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
PFObject *testObject = [PFObject objectWithClassName:@"TestObject"];
[testObject setObject:@"bar" forKey:@"foo"];
[testObject save];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end

有人可以帮我吗,我会在发布此错误后发布错误。让我知道您还需要我发布哪些其他代码来提供帮助,谢谢。

Here is a pictures of my FirstViewController.m file with the error. closer picture

最佳答案

你错过了这一行

 #import <Parse/Parse.h> 

每次你使用像 PFObject 这样以“PF”开头的东西时,它都是解析框架使用的对象,所以你需要导入框架。

关于ios - 在 xcode 中制作一个聊天应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13726506/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com