//rightBar button
UIButton *rightButton = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 34, 34)];
[rightButton setImage:[UIImage imageNamed:@"share_details"] forState:UIControlStateNormal];
[rightButton addTarget:self action:@selector(doShare) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *rightBarBtn = [[UIBarButtonItem alloc]initWithCustomView:rightButton];
self.navigationItem.rightBarButtonItem = rightBarBtn;
时间: 2024-10-11 10:24:56