This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender | |
{ | |
NSLog(@"identifier :: %@",segue.identifier); | |
NSLog(@"sourceViewController :: %@",segue.sourceViewController); | |
NSLog(@"destinationViewController :: %@",segue.destinationViewController); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender | |
{ | |
NSLog(@"identifier :: %@",segue.identifier); | |
NSLog(@"sourceViewController :: %@",segue.sourceViewController); | |
NSLog(@"destinationViewController :: %@",segue.destinationViewController); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(void)linkAppsBtnCliekd | |
{ | |
NSLog(@"%@ :: %@ ::",self,NSStringFromSelector(_cmd)); | |
[self presentAppStoreForID:[NSNumber numberWithInt:407189619] inView:self.view withDelegate:self withURL:[NSURL URLWithString:@"https://itunes.apple.com/kr/app/neibeo-jisigin-yeogi-naver/id580057691?mt=8"]]; | |
} | |
- (void)presentAppStoreForID:(NSNumber *)appStoreID inView:(UIView *)view withDelegate:(id<SKStoreProductViewControllerDelegate>)delegate withURL:(NSURL *)appStoreURL | |
{ | |
if(NSClassFromString(@"SKStoreProductViewController")) { // iOS6 이상인지 체크 | |