9
새로운 iOS7 SDK가있는 뷰 위에 탐색 표시 줄이 나타납니다.
CGRect cgRect1 = [[UIScreen mainScreen] applicationFrame]; UISearchBar *mySearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, cgRect.size.width, 40)]; mySearchBar.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight ; UITableView *myTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 40, cgRect.size.width, cgRect.size.height-40)]; myTableView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight; [self.view addSubview:mySearchBar]; [self.view addSubview:myTableView]; 이전 버전에서는 올바르게 작동합니다. 검색 표시 줄은 statusbar및 탐색 표시 줄 아래에 나타납니다 . tableview검색 …
113
iphone
ios
objective-c
ipad
ios7