Skip to content

Instantly share code, notes, and snippets.

@michto01
michto01 / attribute_overloadable_test.md
Created February 8, 2018 10:36 — forked from sunnyxx/attribute_overloadable_test.md
__attribute__((overloadable)) test
__attribute__((overloadable)) NSString *descriptionFromValue(float value) {
    return @(value).stringValue;
}
__attribute__((overloadable)) NSString *descriptionFromValue(NSRange range) {
    return NSStringFromRange(range);
}
__attribute__((overloadable)) NSString *descriptionFromValue(id object) {
    return [object description];
}