更改搜索栏的背景图片

dev*_*eng 2 iphone background objective-c uisearchbar searchbar

更改搜索栏的背景颜色很容易.但是,我不知道如何更改其背景图像.没有直接的方法.我需要帮助...............我很欣赏任何给定的想法......

小智 11

UISearchBar* bar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
UIImageView* iview = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"test.png"]];
iview.frame = CGRectMake(0, 0, 320, 44);
[bar insertSubview:iview atIndex:1];
[iview release];
[self.view addSubview:bar];
[bar release];
Run Code Online (Sandbox Code Playgroud)