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.
49 lines
1.0 KiB
49 lines
1.0 KiB
8 years ago
|
/*
|
||
|
* Copyright (c) 2017 - present Facebook, Inc.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This source code is licensed under the BSD style license found in the
|
||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||
|
*/
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface User : NSObject
|
||
|
|
||
|
- (nullable instancetype)initWithName:(nullable NSString*)name;
|
||
|
|
||
|
- (nullable NSString*)tellMeSomething;
|
||
|
|
||
|
- (nullable User*)otherUser;
|
||
|
|
||
|
@property(strong, nonatomic) NSString* name;
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation User
|
||
|
|
||
|
- (nullable instancetype)initWithName:(nullable NSString*)name {
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (nullable NSString*)tellMeSomething {
|
||
|
return @"Hi";
|
||
|
}
|
||
|
|
||
|
- (NSString*)tellMeSomethingNotNullable {
|
||
|
return @"Hi";
|
||
|
}
|
||
|
|
||
|
- (NSString*)tellMeSomething:(NSString*)s1
|
||
|
and:(NSString*)s2
|
||
|
and:(nullable NSString*)s3
|
||
|
and:(NSString*)s4 {
|
||
|
return @"Hi";
|
||
|
}
|
||
|
|
||
|
- (NSString*)otherUserName {
|
||
|
User* ou = [self otherUser];
|
||
|
return ou->_name;
|
||
|
}
|
||
|
@end
|