| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // chatpopView.m
- // AIIM
- //
- // Created by gan on 2025/4/9.
- //
- #import <Foundation/Foundation.h>
- #import "chatpopView.h"
- @interface chatpopView()
- @end
- @implementation chatpopView
- - (instancetype)init{
-
- self = [super init];
- if (self) {
- self.backgroundColor = [UIColor whiteColor];
- }
- return self;
-
- }
- - (IBAction)bt1act:(id)sender {
- NSLog(@"bt1act");
- if(self.delegate){
- [self.delegate actionNote:@"1"];
- }
- }
- - (IBAction)bt2act:(id)sender {
- if(self.delegate){
- [self.delegate actionNote:@"2"];
- }
- }
- - (IBAction)bt3act:(id)sender {
- if(self.delegate){
- [self.delegate actionNote:@"3"];
- }
- }
- - (IBAction)bt4act:(id)sender {
- if(self.delegate){
- [self.delegate actionNote:@"4"];
- }
- }
- - (IBAction)bt5act:(id)sender {
- if(self.delegate){
- [self.delegate actionNote:@"5"];
- }
- }
- - (IBAction)bt6act:(id)sender {
- if(self.delegate){
- [self.delegate actionNote:@"6"];
- }
- }
- @end
|