我可以在iphone应用程序中使搜索栏保持静态

时间:2010-07-09 14:24:47

标签: iphone uitableview cocos2d-iphone

我希望当我向下滚动搜索栏时,搜索栏也应滚动滚动均值。 无论如何要这样做...... 谢谢。抱歉我的英语不好..

2 个答案:

答案 0 :(得分:1)

如果我理解正确,这就是你应该做的:

如果要将SearchBar与内容一起滚动,请打开界面构建器并使SearchBar成为表视图的子项。如果您需要它始终可见,请将其拖出桌面视图。

答案 1 :(得分:0)

你也可以这么做

SearchBar =[[UISearchBar alloc]initWithFrame:CGRectMake(10, 5, 300, 50)];
    SearchBar.tintColor=[UIColor blackColor];
    [SearchBar setDelegate:self]; 
    //[self.view addSubview:search];


    table=[[UITableView alloc]initWithFrame:CGRectMake(0, 15, 320, 480) style:UITableViewStyleGrouped];
    table.delegate=self;
    table.dataSource=self;
    table.backgroundColor=[UIColor darkGrayColor];
    table.tableHeaderView=SearchBar;
    [self.view addSubview:table];