You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
481 B
5 lines
481 B
4 years ago
|
NSString *str = (otherString ?: @"this is the placeholder");
|
||
|
NSString *str2 = (str ? otherString : @"this is the other placeholder");
|
||
|
NSString *str3 = str ? [[NSString alloc] initWithString:str] : @"this is the third placeholder";
|
||
|
id str4 = str ? [self methodWithParameter1:@{@"bla": ({[self anotherMethod:@{@"id": @1}];})}
|
||
|
andParameter2:@{@"dict_key": @{@"nested_dict_key_1": @(1), @"nested_dict_key_2": @"colon:in:string"}}] : [self anotherMethod:str ? @1 : @2];
|