本文介绍了如何排序的数字有作为iPhone字符串数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hello,
I have array in which i have numbers stored as string.
How to sort this array in acsending order?

解决方案
NSArray *sortedArray = nil;
sortedArray = [oldArray sortedArrayUsingFunction:sortArray context:NULL];

NSInteger intSort(id num1, id num2, void *context) {

    // OR: float n1 = [num1 floatValue]; etc.

    int n1 = [num1 intValue];
    int n2 = [num2 intValue];
    if (n1 < n2) {
        return NSOrderedAscending;
    } else if (n1 > n2) {
        return NSOrderedDescending;
    } else {
        return NSOrderedSame;
    }
}

这篇关于如何排序的数字有作为iPhone字符串数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 13:15