[swift] UITableView 빈셀 안보이게 하기 tableView.tableFooterView = UIView(frame: CGRect.zero)출처 :http://stackoverflow.com/questions/14520185/how-to-remove-empty-cells-in-uitableview 더보기 [iOS] 키보드 노티피케이션 활용 -(void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self registNotification]; } -(void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; [self unregistNotification]; } -(void) registNotification { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil]; [[NSNotificationC.. 더보기 [iOS] 스크롤뷰 컨텐츠 내부 여백 제거 - (void)awakeFromNib{ self.automaticallyAdjustsScrollViewInsets = NO; } 더보기 이전 1 2 3 4 ··· 20 다음