と呼ばれるUIButton
のインスタンスにを追加しようとしています。のサブクラスにアウトレットを作成し、Interface Builder にアクションを追加しましたが、正しく動作しないようです。UICollectionViewCell
MyCollectionViewCell
UIButton
@protocol loadbackgroundDelegate <NSObject>
-(void)loadthebackground:(id)sender;
@end
@interface MyCollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIButton *BuyButton;
@property (weak, nonatomic) IBOutlet UIButton *LoadButton;
@property (strong, nonatomic) IBOutlet UIImageView *imageView;
@property (weak, nonatomic) id<loadbackgroundDelegate> delegate;
- (IBAction)Loadbackground:(id)sender;
- (IBAction)Buybackground:(id)sender;
@end
以前に を実装した人UIButton
はUICollectionViewcell
いますか?これのサンプル コードはありますか??
ありがとうございました