Giter Club home page Giter Club logo

objc-tips's Introduction

objc-tips

Strings

char c = [b characterAtIndex:i];

for (int i = 0; i <= sourceSize - targetSize; i++) {
    NSRange range;
    range.length = targetSize;
    range.location = i;
    NSString *s = [source substringWithRange:range];
    if ([s isEqualToString:target]) {
        return i;
    }
}

int char_compare(const char* a, const char* b) {
    if(*a < *b) {
        return -1;
    } else if(*a > *b) {
        return 1;
    } else {
        return 0;
    }
}

NSString *sort_str(NSString *unsorted) {
    int len = [unsorted length] + 1;
    char *cstr = malloc(len);
    [unsorted getCString:cstr maxLength:len encoding:NSISOLatin1StringEncoding];
    qsort(cstr, len - 1, sizeof(char), char_compare);
    NSString *sorted = [NSString stringWithCString:cstr encoding:NSISOLatin1StringEncoding];
    free(cstr);
    return sorted;
}

Sort

NSArray *b = [a sortedArrayUsingComparator:^NSComparisonResult(id  _Nonnull obj1, id  _Nonnull obj2) {
    int obj1V = [obj1 intValue];
    int obj2V = [obj2 intValue];
    if (obj1V > obj2V) {
        return NSOrderedDescending;
    } else if (obj1V < obj2V) {
        return NSOrderedAscending;
    }
    return NSOrderedSame;
}];

NSArray *b = [a sortedArrayUsingSelector:@selector(compare:)];

Struct

typedef struct {
  int index;
  int value;
} NodeType;

NodeType node;
node.index = ++index;
node.value = v;
NSValue *value = [NSValue value:&node withObjCType:@encode(NodeType)];
[b addObject:value];

NSValue *v1 = obj1;
NodeType node1;
[v1 getValue:&node1];

objc-tips's People

Contributors

remlostime avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.