4

このコードを使用してオブジェクトの NSMutableArray を作成しました

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSArray * ary1 = [NSArray arrayWithObjects:@"01/07",@"02/07",@"03/07",@"04/07",@"05/07",@"06/07",@"07/07", nil];
        NSArray * ary2 = [NSArray arrayWithObjects:@"First",@"Second",@"Third",@"Forth",@"Fifth",@"Sixth",@"Seventh", nil];
        NSArray * ary3 = [NSArray arrayWithObjects:@"1000",@"2000",@"3000",@"4000",@"5000",@"6000",@"7000", nil];

tableAry = [[NSMutableArray alloc] init];
        for (int i=0; i<ary1.count; i++) {
            //cardSummry will hold the data and give back the model to store in array and we can find that value using model
            DataModel *dataModel = [[DataModel alloc] init];
            dataModel.date = [ary1 objectAtIndex:i];
            dataModel.name = [ary2 objectAtIndex:i];
            dataModel.ammount = [ary3 objectAtIndex:i];

            [tableAry addObject:dataModel];
        }
}

これが私の DataModel クラスです

.H ファイル

#import <Foundation/Foundation.h>

@interface DataModel : NSObject

//this variable is used to get the data from array
@property (nonatomic,strong) NSString *date;
@property (nonatomic,strong) NSString *name;
@property (nonatomic,strong) NSString *ammount;

//this method will genarate a data model which will be added to array for future use
+ (id)cardSummary:(NSString*)date name:(NSString*)name ammount:(NSString*)ammount;
@end

.M ファイル

#import "DataModel.h"

@implementation DataModel

@synthesize date,name,ammount;

//this method will genarate a data model which will be added to array for future use
+ (id)cardSummary:(NSString*)date name:(NSString*)name ammount:(NSString*)ammount
{
    DataModel *dataModel = [[self alloc] init];

    [dataModel setDate:date];
    [dataModel setAmmount:ammount];
    [dataModel setName:name];

    return dataModel;
}

@end

今、その配列の名前に従って並べ替えたいと思いますSO でこの質問を見たことがありますが、これは私のように見え、その回答コードを使用して問題を解決しましたが、これは私にとってはうまくいきませんでした

[tableAry sortUsingDescriptors:
     [NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES selector:@selector(caseInsensitiveCompare:)]]];

    NSLog(@"tableAry : %@",tableAry);

では、どうすれば配列をソートできますか

アップデート

@Martin R と @Rick が言ったように、配列を割り当てましたが、このエラーが発生しました。

*** キャッチされない例外 'NSInvalidArgumentException' が原因でアプリを終了します。理由: '-[DataModel caseInsensitiveCompare:]: 認識されないセレクターがインスタンス 0x7550850 に送信されました'

4

4 に答える 4

3

も使用できますNSSortDescriptor

NSSortDescriptor* sortDes = [[NSSortDescriptor alloc] initWithKey:@"your key" ascending:YES];
[_array sortUsingDescriptors:[NSArray arrayWithObject:sortDes]];

それを試してみてください。

于 2013-07-20T16:38:24.117 に答える
0
-(NSMutableArray*)shortCardInAssendingOrder:(NSMutableArray*)cardSetArr{
    NSMutableArray *shortedArray=[[NSMutableArray alloc]init];
    for (int i=0; i<=[cardSetArr count]+1; i++) {
        Card *firstCard=[cardSetArr objectAtIndex:0];
        for(int j=0; j<[cardSetArr count]; j++){
            Card *nextCard=[cardSetArr objectAtIndex:j];
            if(firstCard.cardSymbol>nextCard.cardSymbol){
                firstCard=nil;
                firstCard=nextCard;
            }
        }
        [shortedArray addObject:firstCard];
        [cardSetArr removeObject:firstCard];
    }
    [shortedArray addObject:[cardSetArr objectAtIndex:0]];
    return shortedArray;
}

注: cardSymbol の場所で ur タグまたはその他のものを使用できます

于 2013-11-23T14:58:52.573 に答える