내가 하고 싶엇던것은 글쓰기 댓글달기 창을 modal 뷰로 띄우고 저장하면 창이 없어지면서 tableview가 refresh되기를 원했었다.
아직 잘모르겠따
http://stackoverflow.com/questions/2412688/uiviewcontroller-parentviewcontroller-access-properties
여기랑
상위view에서 하위view 만들때 delegate를 이용하자
self.downViewController = [[DownViewController alloc]
initWithNibName:@"DownView" bundle:nil];
self.downViewController.delegate = self;
...
하위view에서 상위view의 Controller사용
[delegate presentModalViewController:self.downTwoViewController animated:YES];
이래 하면 delegate가 상위view의 Controller가 됨
이걸 참조해보자.
http://liebus.tistory.com/entry/상위-view-의-Controller를-사용하고자-할때
---------------------------------------------------------------------------------------------------
새롭게 해보자.
목적: child navigation 메뉴에서 Save를 눌렀을때 parent navgationViewControoler의 Table을 Reload 하는 메소드를 호출하는것
일단 팝업이나 네비게이션 된 자식 헤더에
@property (nonatomic,retain) HugeBoardViewController *hugeboardViewController;
이렇게 parentController를 추가하고
저장버튼에
hugeboardViewController = [self.navigationController.viewControllers objectAtIndex:0];
hugeboardViewController ReloadBoardData];
이렇게 구현했다.
'iPhone App' 카테고리의 다른 글
[iphone] TableView에서 긴글을 표시할때 Row 높이를 다이나믹하게 조정하기 (5) | 2011.08.16 |
---|---|
[iphone] 맥용 SVN Client SCPlugin (0) | 2011.08.09 |
[iphone] IB 를 이용해서 Custom TableViewCell 만들기 (0) | 2011.07.27 |
[iphone] Instruments를 이용해서 메모리 체크를 하자 (0) | 2011.07.27 |
[iphone] 예전에 올린 XML Parsing 소스 Upgrade (0) | 2011.07.27 |