소스 검색

Back button working.

Iñigo Valentin 9 년 전
부모
커밋
f15c69be3e
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      app/PostViewController.swift

+ 4 - 0
app/PostViewController.swift

@@ -55,12 +55,16 @@ class PostViewController: UIViewController, UIGestureRecognizerDelegate {
 		
 		super.viewDidLoad()
 		self.loadPost(id: id)
+		
+		// Set button action
+		barButton.addTarget(self, action: #selector(self.back), for: .touchUpInside)
 	}
 	
 	//TODO implement all the logic for post loading here, including iboutlts
 	
 	
 	func back() {
+		print("POSTCONTROLLER:DEBUG: Back")
 		self.dismiss(animated: true, completion: nil)
 	}