21 lines
425 B
Objective-C
Executable File
21 lines
425 B
Objective-C
Executable File
//
|
|
// FirstViewController.h
|
|
// Talk
|
|
//
|
|
// Created by xuzs on 22/10/11.
|
|
// Copyright (c) 2022年 xuzs. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BaseViewController.h"
|
|
|
|
@interface Call : BaseViewController<UIScrollViewDelegate>
|
|
@property(nonatomic) NSString *CallTag;
|
|
- (void)RefImg:(NSData *)data;
|
|
- (void)setTime:(long)time0;
|
|
- (void)UIClose;
|
|
- (void)AnswerSucc;
|
|
- (void)OpenDoorGo:(NSString *)pwd;
|
|
@end
|
|
|