- (NSString *)stringForTemperature:(int)temperature base:(int)base {
if (temperature > base) {
return @"HOT";
} else if (temperature < base) {
return @"COLD";
} else {
return @"MEDIUM";
}
}
- (void) otherFunction {
NSString *temperatureString = [self stringForTemperature:A base:B];
}
'[ 모바일 관련 ] > 아이폰(iOS)' 카테고리의 다른 글
접속포트 조회 (서버와 POST, GET 통신) (0) | 2019.01.10 |
---|---|
iOS NSString -> int 변환 (0) | 2019.01.10 |
애플 개발자 등록시 Two-factor authentication 이슈 (0) | 2018.12.12 |
iOS - 다른 클래스의 메소드 호출하기 (0) | 2018.12.06 |
아이폰 스플래시 이미지 사이즈 (Portrait 기준) (0) | 2018.12.05 |