mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* fix incorrect error of migration to device * alert to finish migration, ios fix * simplexmq * catching exception and stopping chat * text --------- Co-authored-by: Avently <7953703+avently@users.noreply.github.com>
20 lines
355 B
Objective-C
20 lines
355 B
Objective-C
//
|
|
// objc.h
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by Stanislav Dmitrenko on 09.09.2024.
|
|
// Copyright © 2024 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
#ifndef objc_h
|
|
#define objc_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface ObjC : NSObject
|
|
|
|
+ (BOOL)catchException:(void(^)(void))tryBlock error:(__autoreleasing NSError **)error;
|
|
|
|
@end
|
|
|
|
#endif /* objc_h */
|