IOS5 -[__NSCFDictionary nombre]:无法识别的选择器发送到实例 0x6da25a0

发布于 2025-01-06 03:52:43 字数 925 浏览 1 评论 0原文

尝试访问类“事件”Json 的属性时出现错误

全部列出 确定 当我尝试访问错误跳转时

Evento* bean = [ListaEventos objectAtIndex:indexPath.row];    
DetalleViewController *detalle = [self.storyboard    instantiateViewControllerWithIdentifier:@"Detalle"];
NSLog(@"detalle: %@",[bean nombre]);//bean Log OK!!, but bean.nombre Error!! why?

类:evento.h

@interface Evento : NSObject

@property (strong, nonatomic)  NSString *idevento;
@property (strong, nonatomic)  NSString *nombre;
@property (strong, nonatomic)  NSString *descripcion;
@property (strong, nonatomic)  NSString *fecha;
@property (strong, nonatomic)  NSString *telefono;
@property (strong, nonatomic)  NSString *direccion;

@end

Evento.m

@implementation Evento

@synthesize idevento;
@synthesize nombre;
@synthesize descripcion;
@synthesize fecha;
@synthesize telefono;
@synthesize direccion;

@end

I get an error when trying to access an attribute of a class "event"

Json List all Ok When I trying to access the error jumps

Evento* bean = [ListaEventos objectAtIndex:indexPath.row];    
DetalleViewController *detalle = [self.storyboard    instantiateViewControllerWithIdentifier:@"Detalle"];
NSLog(@"detalle: %@",[bean nombre]);//bean Log OK!!, but bean.nombre Error!! why?

The class: evento.h

@interface Evento : NSObject

@property (strong, nonatomic)  NSString *idevento;
@property (strong, nonatomic)  NSString *nombre;
@property (strong, nonatomic)  NSString *descripcion;
@property (strong, nonatomic)  NSString *fecha;
@property (strong, nonatomic)  NSString *telefono;
@property (strong, nonatomic)  NSString *direccion;

@end

Evento.m

@implementation Evento

@synthesize idevento;
@synthesize nombre;
@synthesize descripcion;
@synthesize fecha;
@synthesize telefono;
@synthesize direccion;

@end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

好多鱼好多余 2025-01-13 03:52:43

[ListaEventos objectAtIndex:indexPath.row]; 中得到的内容是 NSDictionary 类型,而不是想象中的 Evento 类型。检查你的数据!

What you get out of [ListaEventos objectAtIndex:indexPath.row]; is of kind NSDictionary and not of kind Evento as supposed. Check your data!

无尽的现实 2025-01-13 03:52:43

您获得的对象

[ListaEventos objectAtIndex:indexPath.row];

是字典类型,没有方法或属性名称。
如果您可以在此处添加 json,我们可以帮助您获取正确的 evento 对象。

The object you get with

[ListaEventos objectAtIndex:indexPath.row];

Is of type dictionary which doesn't have the method or the property nombre.
If you could add also add here the json we can help you to get the correct evento object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文