我想顯示與許多標籤,tableview與3行和按鈕的viewcontroller。我的容器空間不夠,所以我使用第三方類TPKeyboardAvoidingScrollView的滾動視圖。我在viewcontroller中的scrollview沒有顯示在容器中的tableview
現在,當在xcode iPhone模擬器中運行應用程序時,我的滾動視圖,標籤和按鈕正在顯示,而不是我的tableview。也嘗試過這個應用程序運行在我的iphone上,同樣的情況存在那裏,但一旦我改變我的應用程序從縱向到風景,再到肖像,現在我的桌面顯示正在顯示。但每次運行我的應用程序時,我都需要將肖像更改爲風景。
我無法確定在做什麼錯誤?任何人都可以找到解決這個問題的辦法嗎?在此先感謝...
代碼
#import <UIKit/UIKit.h>
#import "TPKeyboardAvoidingScrollView.h"
interface preview : UIViewController<UITableViewDelegate,UITableViewDataSource>
property(nonatomic,retain)IBOutlet UIButton *comment;
property(nonatomic,retain)IBOutlet UIButton *appove;
property(nonatomic,retain)IBOutlet UIButton *change;
property (strong, nonatomic) IBOutlet UITableView *tableview;
property (strong, nonatomic) IBOutlet TPKeyboardAvoidingScrollView *scrollview; - (IBAction)clickedcomments:(id)sender;
- (IBAction)clickedapprove;
- (IBAction)clickedchange;
end
在此處添加您的代碼 –
註冊以獲取表格視圖的框架數據。並將這些信息也添加到信息中。確保你用於iphone的nib文件的tableview在滾動視圖中正確定位。 – ratul
@DivyaBhalodiya,preview.h文件代碼,#進口 #進口 「TPKeyboardAvoidingScrollView.h」 接口預覽:的UIViewController <的UITableViewDelegate,UITableViewDataSource> 屬性(非原子,保留)IBOutlet中的UIButton *註釋; property(nonatomic,retain)IBOutlet UIButton * appove; property(nonatomic,retain)IBOutlet UIButton * change; property(strong,nonatomic)IBOutlet UITableView * tableview; property(strong,nonatomic)IBOutlet TPKeyboardAvoidingScrollView * scrollview; - (IBAction)clickedcomments:(id)sender; - (IBAction)clickedapprove; - (IBAction)clickedchange; end –
sathya