open/demo_src/TCP_Client/MobileIMSDK4iDemo_tcp/MobileIMSDK4iDemo/main.m
2025-01-18 07:55:12 +00:00

31 lines
1.1 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ----------------------------------------------------------------------
// Copyright (C) 2017 即时通讯网(52im.net) & Jack Jiang.
// The MobileIMSDK_TCP (MobileIMSDK v5.x TCP版) Project.
// All rights reserved.
//
// > Github地址: https://github.com/JackJiang2011/MobileIMSDK
// > 文档地址: http://www.52im.net/forum-89-1.html
// > 即时通讯技术社区http://www.52im.net/
// > 即时通讯技术交流群320837163 (http://www.52im.net/topic-qqgroup.html)
//
// "即时通讯网(52im.net) - 即时通讯开发者社区!" 推荐开源工程。
//
// 如需联系作者,请发邮件至 jack.jiang@52im.net 或 jb2011@163.com.
// ----------------------------------------------------------------------
//
// main.m
// MibileIMSDK4iDemo_X (A demo for MobileIMSDK v3.0 at Summer 2017)
//
// Created by JackJiang on 14/10/21.
// Copyright (c) 2017年 52im.net. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}