This PR contains all the work related to setting up this project as required to implement the [Assignment](https://repo.rock-n-code.com/rock-n-code/deep-linking-assignment/wiki/Assignment) on top, as intended. To summarise this work: - [x] created a new **Xcode** project; - [x] cloned the `Wikipedia` app and inserted it into the **Xcode** project; - [x] created the `Locations` app and also, its `Libraries` package; - [x] created the `Shared` package to share dependencies between the apps; - [x] added a `Makefile` file and implemented some **environment** and **help** commands. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: rock-n-code/deep-linking-assignment#1
51 lines
2.0 KiB
Objective-C
51 lines
2.0 KiB
Objective-C
//
|
|
// MTLReflection.m
|
|
// Mantle
|
|
//
|
|
// Created by Justin Spahr-Summers on 2013-03-12.
|
|
// Copyright (c) 2013 GitHub. All rights reserved.
|
|
//
|
|
|
|
#import "MTLReflection.h"
|
|
#import <objc/runtime.h>
|
|
|
|
SEL MTLSelectorWithKeyPattern(NSString *key, const char *suffix) {
|
|
NSUInteger keyLength = [key maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding];
|
|
NSUInteger suffixLength = strlen(suffix);
|
|
|
|
char selector[keyLength + suffixLength + 1];
|
|
|
|
BOOL success = [key getBytes:selector maxLength:keyLength usedLength:&keyLength encoding:NSUTF8StringEncoding options:0 range:NSMakeRange(0, key.length) remainingRange:NULL];
|
|
if (!success) return NULL;
|
|
|
|
memcpy(selector + keyLength, suffix, suffixLength);
|
|
selector[keyLength + suffixLength] = '\0';
|
|
|
|
return sel_registerName(selector);
|
|
}
|
|
|
|
SEL MTLSelectorWithCapitalizedKeyPattern(const char *prefix, NSString *key, const char *suffix) {
|
|
NSUInteger prefixLength = strlen(prefix);
|
|
NSUInteger suffixLength = strlen(suffix);
|
|
|
|
NSString *initial = [key substringToIndex:1].uppercaseString;
|
|
NSUInteger initialLength = [initial maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding];
|
|
|
|
NSString *rest = [key substringFromIndex:1];
|
|
NSUInteger restLength = [rest maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding];
|
|
|
|
char selector[prefixLength + initialLength + restLength + suffixLength + 1];
|
|
memcpy(selector, prefix, prefixLength);
|
|
|
|
BOOL success = [initial getBytes:selector + prefixLength maxLength:initialLength usedLength:&initialLength encoding:NSUTF8StringEncoding options:0 range:NSMakeRange(0, initial.length) remainingRange:NULL];
|
|
if (!success) return NULL;
|
|
|
|
success = [rest getBytes:selector + prefixLength + initialLength maxLength:restLength usedLength:&restLength encoding:NSUTF8StringEncoding options:0 range:NSMakeRange(0, rest.length) remainingRange:NULL];
|
|
if (!success) return NULL;
|
|
|
|
memcpy(selector + prefixLength + initialLength + restLength, suffix, suffixLength);
|
|
selector[prefixLength + initialLength + restLength + suffixLength] = '\0';
|
|
|
|
return sel_registerName(selector);
|
|
}
|