包含此警告的應用程序是否會通過App Store審閱?Objective-C UISearchBar可能不會響應setContentInset
隨着代碼,它實際上呈現在iPhone模擬器,但我應該如何刪除Xcode中的上述警告?
編輯2011年9月20:
我會後,有一天移除此警告的代碼。
EDIT 9 2011年10月:
這裏是我的解決方案,因爲我無法找到任何其他更好,更容易的解決方案:
UIView *extrablue = [[UIView alloc] initWithFrame:CGRectMake(250,0,80,40)];
extrablue.backgroundColor = RGBCOLOR (95,95,95);
[self.view addSubview:extrablue];
mySearchBar = [[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, 250, 40)];
//[mySearchBar setContentInset: UIEdgeInsetsMake(5,0,5,75)];
mySearchBar.placeholder = @"Search a term here ... ";
mySearchBar.backgroundColor = RGBCOLOR (95,95,95);
mySearchBar.delegate = self;
//[mySearchBar sizeToFit];
mySearchBar.autocorrectionType = UITextAutocorrectionTypeNo;
[mySearchBar setAutocapitalizationType:UITextAutocapitalizationTypeNone];
[self.view addSubview: mySearchBar];
我明白了。感謝您指出了這一點。 – wagashi