UISearchBar* mSearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0,160,320,40)];
mSearchBar.showsCancelButton = NO;
mSearchBar.userInteractionEnabled = YES;
mSearchBar.backgroundColor = [UIColor clearColor];
mSearchBar.tintColor = [UIColor whiteColor];
mSearchBar.showsScopeBar = NO;
[self.view addSubview:mSearchBar];
for (UIView *subview in mSearchBar.subviews)
{
if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")])
{
[subview removeFromSuperview];
break;
}
}
Thank you.
ReplyDeleteHow can I add an image to pages with text in my iPod project please?
Michael
what pages you are referring to?
ReplyDeleteIs it approved by Apple?
ReplyDeleteUsed this in one of the application, but not restricted by Apple.
ReplyDelete