Im using a .xib file to add two buttons above my table view that edit and add to the tableView. The table View Was visible before the .xib was implanted but now I cant see the table. I have set the UIView BackGround of my SDK to clear by setting the opacity to 0%. All I see is the two buttons and white space. Is there anything I need to do in order to make sure my file doesn’t take up the whole screen? Do I need to do something to my written Code?
Share
1 – if you set
UIViewalpha to 0 then you can not see the view that is for sure. try to set background color toclearColorbeside of changing alpha to 0.2 –
Table Viewis not visible until you fill it by some data, if you put oneTable Viewyou will only see one white block.So first fill up your
Table Viewwith some data and see what will happen.hope this help