ボタンのhidden変更について
現在、ボタン2をAttributesInspectorでHiddenにチェックをつけ使えないようにしています、これをナビゲーションバーに設置したボタン1を押すとボタン2がHidden = NOになり、ボタン2が使える状態にしたいです。
コードは
ViewController.m
#import "CollectionHeaderView.h"
- (void)willTrash:(UIBarButtonItem *)sender
{
//削除ボタンを表示Hidden = NOに
CollectionHeaderView *collectionView = [[CollectionHeaderView
alloc] init];
[collectionView sectionCanSee];
}
CollectionHeaderView.h
@property (weak, nonatomic) IBOutlet UIButton *tappedSectionDelete;
CollectionHeaderView.m
- (void)sectionCanSee
{
NSLog(@"ここは実行される");
self.tappedSectionDelete.hidden = NO;
}
これで実行してもうまくいきません。
どなたか宜しくお願いします。