16 lines
274 B
Objective-C
16 lines
274 B
Objective-C
//
|
|
// DemoLogViewController.h
|
|
// TrustHttpDNSTestDemo
|
|
//
|
|
// @author Created by Claude Code on 2025-10-05
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface DemoLogViewController : UIViewController
|
|
|
|
- (void)setInitialText:(NSString *)text;
|
|
- (void)appendLine:(NSString *)line;
|
|
|
|
@end
|