iOS 312

2차 평가과제 중 알게된 것들 (테이블뷰 섹션 관련)

TableView Section뒤에 배경화면을 UIViewController의 배경화면으로 하고싶을 때 (비우고 싶은 경우) [self.tableView setBackgroundView:nil]; [self.tableView setBackgroundColor:[UIColor clearColor]]; https://stackoverflow.com/questions/18753411/uitableview-clear-background UITableView clear background I realize that iOS 7 has not officially been released and we should not discuss it BUT I am going crazy trying to figure out th..

[iOS swift] Tableview swipe 시 기능 추가

Tableview swipe 시 기능 추가 (leading, trailing 둘 다 가능) 방법 2가지 >> 1번 방법 func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { let delete = UIContextualAction(style: .normal, title: "삭제") { [self] action, view, completionHandler in print("favorite Button Clicked") repository.delete(item: self.tasks[indexPath.row]) sel..

tableview code로 구현하기

tableview code로 구현하기 https://shark-sea.kr/entry/iOS-TableView-Code%EB%A1%9C-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0 iOS :: TableView Code로 구현하기 안녕하세요! 상어입니다. 오늘은 전편에 이어 TableView를 Code로 구현하는 내용을 다뤄보겠습니다. 저는 개인적으로 Storyboard를 애용하기 때문에 code로 구현하는 일은 잘 없지만, 간혹 한번씩(드물 shark-sea.kr 글이 잘 쓰여있어서 퍼옴

iOS swift Singleton Pattern 싱글톤패턴

싱글톤패턴 https://babbab2.tistory.com/66 Swift) 싱글톤 패턴(Singleton Pattern) 안녕하세요 :) 소들입니다 이번 포스팅에선 싱글톤 패턴이 무엇이고, Swift에선 어떻게 사용되는지에 대해 알아보려고 해요!!! 왜 네트워크 하다가 갑자기 SingleTon이냐 하면 내 마음임 모든 포스팅 babbab2.tistory.com https://mini-min-dev.tistory.com/39 [Swift] #6 - 싱글톤 패턴(Singleton Pattern) 이해하기 오늘은 Swift에서 Delegate Pattern 만큼 역시 많이 쓰이는 디자인 패턴인 "싱글톤 패턴(Singleton Pattern)"에 대해 글을 다루어 보려 한다. 싱글톤 패턴이란 무엇일까? 특정..

[iOS swift] 오픈소스 라이브러리 몇 가지

오픈소스 라이브러리 몇 가지 소개 https://github.com/realm/SwiftLint GitHub - realm/SwiftLint: A tool to enforce Swift style and conventions. A tool to enforce Swift style and conventions. Contribute to realm/SwiftLint development by creating an account on GitHub. github.com https://github.com/SwiftGen/SwiftGen GitHub - SwiftGen/SwiftGen: The Swift code generator for your assets, storyboards, Localizable.strin..