Swift 썸네일형 리스트형 iOS 키보드 숨기는 방법 1. resignFirstResponder 사용 - textView에서 직접적으로 사용해야 함 //사용법 [textView resignFirstResponder]; 2. endEditing:(BOOL)force 사용 - textView를 포함하는 뷰에서 사용하여도 하위 뷰들의 키보드 처리를 알아서 해줌 - 매개변수는 optionally한 값으로 강제 처리에 관련된 값이다. - (void)viewDidLoad { [super viewDidLoad]; [self.view setBackgroundColor:[UIColor grayColor]]; UITextView *txtView = [[UITextView alloc] initWithFrame:CGRectMake(100.0f, 100.0f, 100.0f, 30.. 더보기 nil, Nil, null, NSNull의 차이 nil - Objective-c object의 부재를 나타낼 때 사용. NSString * strObject = nil; Nil - Objective-c class의 부재를 나타낼 때 사용. - Objective-c class: 자신이 속한 클래스의 정보를 가진 구조체. Class myClass = Nil NULL - c-pointer의 부재(주소가 0) 및 C나 C++의 변수 및 객체에 사용 int *intPtr = NULL; NSNull - NSObject를 상속받는 객체로 collection item을 null로 설정할 필요가 있을때 사용 [myArray addObject:[NSNull null]]; if ([myArray objectAtIndex:0] == [NSNull null]) Swift에서.. 더보기 이전 1 다음