Objective-C 메서드 구문에 대한 몇 가지 게시물을 읽었지만 메서드의 여러 이름을 이해하지 못하는 것 같습니다.
getBusStops
with NSString
및 NSTimeInterval
parameters 및 반환 유형 의을 (를) 호출하는 메서드를 만들려고합니다 NSMutableArray
. 이것이 내가 메소드를 구성한 방법이지만 런타임에 분명히 오류가 발생합니다.
- (NSMutableArray *)getBusStops:(NSString *)busStop
(NSTimeInterval *)timeInterval;
방법이있는 또 다른 예를 보았습니다.
-(NSInteger)pickerView:(UIPickerView *)pickerView
numberOfRowsInComponent:(NSInteger)component
이 메소드에 왜 각 매개 변수의 메소드 이름이 있는지 이해가되지 않습니다. 다음과 같은 작업을 수행해야합니다.
- (NSMutableArray *)getBusStops:(NSString *)busStop
forTime:(NSTimeInterval *)timeInterval