When I use storyboard in Xcode4 ,not as xib before, I click the UITableViewCell
in UITableView
to push View B,B have a tableView and other buttons and labels.
if the B inherit from UIViewController
, when I push B,the background of B is black!
if the B inherit UITableViewController
, when I push B, the B shows the only table, other buttons and labels disappear!
I have connect the cell and B using push.
I want jump click the tablecell on the left View A into right View B.
what i want see is
but when B inherits UIViewController
and implement UITableViewDataSource and delegate,when jump into it,it shows !!!
when i change B to inherit UITableViewController
,it shows
neither of it is what I want.......