在Objective-C中,设置标题内容可以通过以下方法实现:
#import <UIKit/UIKit.h>
@property (strong, nonatomic) UILabel *titleLabel;
- (void)viewDidLoad {
[super viewDidLoad];
// 初始化标题标签
self.titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 40)];
// 设置标题标签的属性
self.titleLabel.text = @"标题内容";
self.titleLabel.textColor = [UIColor whiteColor];
self.titleLabel.textAlignment = NSTextAlignmentCenter;
self.titleLabel.font = [UIFont systemFontOfSize:18];
// 将标题标签添加到导航栏中
self.navigationItem.titleView = self.titleLabel;
}
通过以上方法,您可以在Objective-C中设置标题内容。
领取专属 10元无门槛券
手把手带您无忧上云