0

我有一个包含十几个不同视图控制器的项目。全部使用相同的代码来设置导航栏的背景,如下所示:

CGRect frame = CGRectMake(0, 0, [self.title sizeWithFont:[UIFont fontWithName:@"HelveticaNeue" size:28]].width, 44);
    UILabel *titleLabel = [[UILabel alloc] initWithFrame:frame];
    titleLabel.text = @"Categories";
    titleLabel.font = [UIFont fontWithName:@"HelveticaNeue" size:22];
    titleLabel.backgroundColor = UIColorFromRGBWithAlpha(0x84A537, 0.5);
    titleLabel.textAlignment = NSTextAlignmentCenter;
    self.navigationItem.titleView = titleLabel;

    self.navigationController.navigationBar.tintColor = UIColorFromRGBWithAlpha(0x84A537, 0.5);
    self.navigationItem.titleView.backgroundColor = [UIColor clearColor];
    self.navigationController.view.backgroundColor = UIColorFromRGBWithAlpha(0x84A537, 0.1);

除了标题文本为灰色背景的 CollectionView 之外,它们都可以正常工作。我复制并粘贴了其他 VC 的代码。我不知道我在做什么来造成这种情况。我像这样设置颜色十六进制值:

//RGB color macro
#define UIColorFromRGB(rgbValue) [UIColor \
colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]

//RGB color macro with alpha
#define UIColorFromRGBWithAlpha(rgbValue,a) [UIColor \
colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
blue:((float)(rgbValue & 0xFF))/255.0 alpha:a]
4

1 回答 1

1

似乎集合视图的导航栏样式设置与其他视图控制器不同。对于这些,我必须在调用控制器中设置条形颜色,并设置导航。集合视图中的条形背景颜色为 clearColor。

我希望这对其他人有帮助。

调用VC:

- (IBAction)imageButtonTapped:(id)sender {
    imageCellLayout = [[ImageCellLayout alloc] init];

    imageViewController= [[ImageViewController alloc] initWithCollectionViewLayout:imageCellLayout];
    imageViewController.item = item;
    addImageViewController.item = item;
    imageViewController.collectionView.pagingEnabled = YES;
    UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:imageViewController];
    nc.navigationBar.tintColor =  UIColorFromRGBWithAlpha(0xC43F32, 0.5);
    nc.modalPresentationStyle = UIModalPresentationPageSheet;
    [self presentViewController:nc animated:YES completion:nil];

}

收藏视图:

//Title Stuff

CGRect frame = CGRectMake(0, 0, [self.title sizeWithFont:[UIFont fontWithName:@"HelveticaNeue" size:28]].width, 44);
UILabel *titleLabel = [[UILabel alloc] initWithFrame:frame];
NSString *tempTitle = item.title;
titleLabel.text = tempTitle;
titleLabel.font = [UIFont fontWithName:@"HelveticaNeue" size:22];
titleLabel.backgroundColor = [UIColor clearColor];
titleLabel.textAlignment = NSTextAlignmentCenter;
self.navigationItem.titleView = titleLabel;
于 2013-03-07T23:24:29.120 回答