我已經在文本字段中創建了一個視圖,應該使用像這樣的字符方法。當我從縱向改變我的視圖到風景時,我的視圖寬度不變。當我旋轉視圖時,視圖寬度不會改變
viewForautoCompleteTableView = [[UIView alloc]initWithFrame:CGRectMake(30, 120, 212, 100)];
viewForautoCompleteTableView.autoresizingMask=UIViewAutoresizingFlexibleWidth;
[self.view addSubview:viewForautoCompleteTableView];
viewForautoCompleteTableView.layer.borderWidth=1;
viewForautoCompleteTableView.layer.borderColor=[UIColor grayColor].CGColor;
謝謝
viewForautoCompleteTableView = [[UIView alloc] initWithFrame:CGRectMake(30,120,212,100)]; 實際上,我調整了這樣的框架,沒有使用任何self.viewforautocompletetableview – siva