CallStack 정보 출력
2021. 8. 9. 18:01ㆍ개발자료/iOS
반응형
# 함수를 호출한 함수명 등을 얻어서 처리할때 사용 가능
NSArray *syms = [NSThread callStackSymbols];
if ([syms count] > 1) {
NSLog(@"<%@ %p> %@ - caller: %@ ", [self class], self, NSStringFromSelector(_cmd),[syms objectAtIndex:1]);
} else {
NSLog(@"<%@ %p> %@", [self class], self, NSStringFromSelector(_cmd));
}
반응형
'개발자료 > iOS' 카테고리의 다른 글
[WebView] Inject (0) | 2021.09.29 |
---|---|
[IB] 비율에 맞추기 (0) | 2021.09.29 |
[Error] You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist. (0) | 2021.07.23 |
AppStore 수출 규정 참고 자료 (0) | 2021.07.21 |
NSNotification (0) | 2021.05.31 |