[__ NSSingleObjectArrayI in Coredata

问题描述 投票:0回答:1

我正在使用Coredata。当我获取我的关系时,我便与实体建立了关系,并给出了NSSet,并使用AllObjects将其转换为NSMutableArray。它给我的问题是__NSSingleObjectArrayI而不是NSMutableArray。谁能帮我这个忙。谢谢

疲倦的代码:-

NSSet *arrPayment = [[[dictPaymentData allValues] valueForKey:@"paymentToInvoice"] valueForKey:@"invoiceToPeople"];
          NSMutableArray *arrData = [NSMutableArray arrayWithArray:[arrPayment allObjects]];

这是我的__NSSingleObjectArrayI代码:-

<__NSArrayM 0x6000018464f0>(
<__NSSingleObjectArrayI 0x600000a8bdd0>(
{(
    <People: 0x600002b44370> (entity: People; id: 0x91782a4d7073f8e8 <x-coredata://0785667E-51C4-4C34-B696-C4374F6315D4/People/p630> ; data: {
    archiveStatus = 0;
    defaultTerms = 30;
    email = nil;
    extra1 = nil;
    extra2 = nil;
    extra3 = nil;
    faxNo = nil;
    firstName = nil;
    from = nil;
    fromid = 0;
    homeNo = nil;
    internalNotes = nil;
    lastName = nil;
    mobileNO = nil;
    modificationDate = "2019-01-17 11:58:50 +0000";
    organization = Yogesh;
    peopleId = 0;
    "sa_City" = nil;
    "sa_Country" = nil;
    "sa_State" = nil;
    "sa_Street1" = nil;
    "sa_Street2" = nil;
    "sa_Zip" = nil;
    selectedCurrency = "en_US";
    signature = nil;
    sortingString = nil;
    status = Cactive;
    syncID = nil;
    uniqueIdentifier = "6A819F69-DCB0-4B6C-BE60-03151B23541D-3341-0000043F5397E622";
    userId = nil;
    vatNo = nil;
})
)}
)
)
,
objective-c arrays core-data nsmutablearray nsarray
1个回答
-1
投票

valueForKey:具有特殊行为。应用于数组时,它将始终返回给定键的所有值的数组。

您最好使用objectForKey:

© www.soinside.com 2019 - 2024. All rights reserved.