-5

我正在尝试将对象添加到数组中,但它发送 zig bart 错误“无法识别的选择器发送到实例”下面是我的代码

AppDelegate     *appdelegate              = (AppDelegate *)[[UIApplication sharedApplication]delegate];
    NSDictionary *infomation = [self dictionaryWithContentsOfJSONString:@"Contacts.json"];
    IstructContactsOrgByEntity *ObjIstructContactsOrgByEntity=[[IstructContactsOrgByEntity alloc]initWithIstructContactsOrgByEntity:infomation];
    NSArray *array=[infomation objectForKey:@"contacts_list"];
    for (int ndx = 0; ndx < [array count]; ndx++)
    {
        NSDictionary *stream = (NSDictionary *)[array objectAtIndex:ndx];
        IstructContacts_List *ObjIstructContacts_List=[[IstructContacts_List alloc]initWithIstructContacts_List:stream];
        NSArray *Qnarray=[stream objectForKey:@"contacts"];
        for (int i=0; i<Qnarray.count; i++)
        {
            NSDictionary *Qnstream = (NSDictionary *)[Qnarray objectAtIndex:i];
            IstructContacts *ObjIstructContacts=[[IstructContacts alloc]initWithIstructContacts:Qnstream];
            [ObjIstructContacts_List.m_muteArrContacts addObject:ObjIstructContacts];
        }

        [ObjIstructContactsOrgByEntity.m_muteArrContacts_List addObject:ObjIstructContacts_List];

    }
    [appdelegate.m_ArrContactsOrgEntity addObject:ObjIstructContactsOrgByEntity];

最后一行 [appdelegate.m_ArrContactsOrgEntity addObject:ObjIstructContactsOrgByEntity]; 导致我出现问题。

4

3 回答 3

5

您的问题是编译器认为您已将“ m_ArrContactsOrgEntity”声明为 NSMutableArray 以外的其他内容。

否则,您将不会看到“无法识别的选择器”错误。

对您的另一个建议提示,Objective-C 中的最佳实践是变量应始终以小写字母开头。将“ ObjIstructContacts”、“ Qnarray”和“ Qnstream”更改为以小写字母开头。

于 2013-07-01T06:05:34.170 回答
0
m_ArrContactsOrgEntity must be NSmutableArray instead of NSArray.

NOW, You will add any items in m_ArrContactsOrgEntity array.
于 2013-07-01T08:43:14.843 回答
0
**AppDelegate.h**

@property(nonatomic,retain) NSMutableArray *m_ArrContactsOrgEntity;


@synthesize m_ArrContactsOrgEntity;

**AppDelegate.m**

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
   self.m_ArrContactsOrgEntity = [[[NSMutableArray alloc] init] autorelease];
}

然后使用 AppDelegate 对象添加对象。

谢谢。

于 2013-07-01T06:07:52.800 回答