본문 바로가기

ios

(ios) Xcode - 버튼 누르면 로그 찍히게 하기

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

결과 화면 먼저.. Button 버튼을 누르면 아무 반응이 없고(Fake..)


Test버튼을 누르면 로그 창에 기록이 된다. hello 라고 나옴.





=================


NSLog(@"hello??");


로그를 나타내게 하는 것은 위와 같다.


로그 부분을 크게 확대하면...


==================





//

//  ViewController.h

//  Button1_160408

//

//  Created by Mac on 2016. 4. 8..

//  Copyright © 2016 tester. All rights reserved.

//


#import <UIKit/UIKit.h>


@interface ViewController : UIViewController



-(void)viewS1;



@end



// 이것도 역시 연결 해줘야 한다. 뷰 컨트롤러에서 버튼 오른쪽 마우스 클릭 후 (touch up inside) m파일로 연결. 



//  ViewController.m

//  Button1_160408

//

//  Created by Mac on 2016. 4. 8..

//  Copyright © 2016 tester. All rights reserved.

//


#import "ViewController.h"


@interface ViewController ()


@end


@implementation ViewController


- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

}


- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


//


-(void)viewS1{

    

}

- (IBAction)m1:(id)sender {

    NSLog(@"hello??");

}



@end