iOS for QT iOS原生界面和QT混编,嵌套,C++和OC的混编

最近公司开了一个新的项目是要求跨平台开发的,所以采用的是QT开发,但是由于QT使用的是QWidget开发的界面效果肯定不尽人意,所以使用的是iOS和QT混合开发,即:当在工程的主入口的位置直接由iOS的UIWindow直接接手,中间有特别需要的就加载QT的界面,说白了就是整个工程基本是OC搭建界面,个别的界面需要加载QWidget的界面.为了能让各位更明白我可能说的比较细,前面的部分大家可以选择性的查看

(一)前提要求(准备)

必须有两样东西(据说他们的版本需要对应不太清楚,所以在这里贴一下)(补充测试了一下版本不对应也没事的)

(1)Xcode(我的版本是9.2)

Xcode版本

(2)Qt Creator(我的版本是4.5.1)

QT的版本

对于他们的下载方式
Xcode的话只需要到苹果的AppStore就可以下载
QT的话从官网下载可能会很慢可能需要用到VPN,我这里有一个国内的开源镜像,大家可以去下载网速还行[点击进入](安装的话就按部就班的就行如果不会的话可以留言)
点击进入找一下就可以找到2个多G网速快的话一会的功夫

(二)进入正题

1.在QT中创建工程

创建工程1.png
创建工程2.png
创建工程3.png
创建工程4.png
注意这里选的是QWidget
创建工程6.png

创建QT.png
双击这个.ui文件进入下一个设计界面
随便拖一个Button用于展示区分
点击构建然后找到上面标注的路径就可以找到一个xcode的工程文件然后就开始往下看了

2.接下来的操作就是完全在Xcode中操作了,把qt关了吧省省内存哈哈

(1)通过路径找到文件双击打开Xcode工程
通过路径找到文件双击打开Xcode工程
(2)进去后应该是这个样子的
xcode1.png
#include "mywidget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    return a.exec();
}
(3)接下来使用快捷键command+N创建一个类
xcode2.png
xcode3.png
(4)创建完成后把下面的代码全部复制进去(差点忘了把QIOSApplicationDelegate的后缀改成.mm必须改否则他会报错,报到让你怀疑人生)

!!!QIOSApplicationDelegate.h的代码

#import <UIKit/UIKit.h>

@interface QIOSApplicationDelegate : UIResponder<UIApplicationDelegate>
@property (strong, nonatomic) QUIWindow *window;

@end

!!!QIOSApplicationDelegate.mm的代码

#import "QIOSApplicationDelegate.h"
#import "MainViewController.h"
#include <QWindow>

@interface QIOSApplicationDelegate ()

@end

@implementation QIOSApplicationDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.

//    _qApp = new QApplication(_argc, _argv);

self.window = [[QUIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
self.window.rootViewController = [[MainViewController alloc]init];
return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}


- (void)applicationWillTerminate:(UIApplication *)application {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end
(5)这个时候你肯定发现报错了不着急慢慢来创建下面的两个类创建完了你在Command+B编译一下发现就会瞬间没错了
xcode4.png
MainViewController.m的代码
#import "MainViewController.h"
#import "QIOSViewController.h"
@interface MainViewController ()

@end

@implementation MainViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor yellowColor];

    // Do any additional setup after loading the view.
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    QIOSViewController * my = [[QIOSViewController alloc]init];
    [self presentViewController:my animated:YES completion:nil];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little     preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end
xcode5.png
(6)接下来创建一个很关键的类(都是坑啊都得按照QT的规矩来)
xcode6.png
xcode7.png
这下面的两段代码必须写进QIOSViewController.mm别问我为什么,我特么也不知道
- (id)initWithQIOSScreen:(UIScreen*)scrren{

    return self;
}

- (void)lockedOrientation{

}

接下来就是QIOSViewController.mm的代码了

#import "QIOSViewController.h"
#include "mywidget.h"
#import "QIOSApplicationDelegate.h"
@interface QIOSViewController () 
@end
static MyWidget * w;
@implementation QIOSViewController
{
    UIView * m_sview;
}
- (void)viewDidLoad {
    [super viewDidLoad];
    [self  addview];
    self.view.backgroundColor = [UIColor redColor];
    UIButton * btn = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 100, 300)];
    btn.backgroundColor = [UIColor blueColor];
    [btn addTarget:self action:@selector(btn) forControlEvents:(UIControlEventTouchUpInside)];
    [self.view addSubview:btn];

    UIButton * btnR = [[UIButton alloc]initWithFrame:CGRectMake(200, 0, 100, 300)];
    btnR.backgroundColor = [UIColor blueColor];
    [btnR addTarget:self action:@selector(btnR) forControlEvents:(UIControlEventTouchUpInside)];
    [self.view addSubview:btnR];

// Do any additional setup after loading the view.
}

- (void)btnR{
    m_sview.hidden = YES;
    [m_sview removeFromSuperview];
    m_sview == nil;
//    [self dismissViewControllerAnimated:YES completion:nil];
}

- (void)btn{

    [self addview];
    UIView* newView;
    if (!w) {
        w = new MyWidget();
    }
    newView = (__bridge UIView*)reinterpret_cast<void*>(w->winId());
    [m_sview addSubview:newView];
    //    QWindow * newview1 = w->windowHandle();
    w->show();
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        dispatch_async(dispatch_get_main_queue(), ^{
        //            delete w;
        //            w->close();
        });
    
    });

}
- (void)addview{
    //    if (!view) {
    [m_sview removeFromSuperview];
    m_sview == nil;
    m_sview = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height-300)];
    m_sview.center = self.view.center;
    m_sview.backgroundColor = [UIColor yellowColor];
    [self.view addSubview:m_sview];
//    }
}
- (id)initWithQIOSScreen:(UIScreen*)scrren{

    return self;
}

- (void)lockedOrientation{

}

- (void)viewWillDisappear:(BOOL)animated{

}
- (void)viewWillAppear:(BOOL)animated{

}
//- (void)initWithQIOSScreen:(QIOSScreen*)screen{
//
//}
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    NSLog(@"点击了");

}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
 #pragma mark - Navigation

 // In a storyboard-based application, you will often want to do a little preparation before navigation
 - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
 // Get the new view controller using [segue destinationViewController].
 // Pass the selected object to the new view controller.
 }
 */

@end
(7)现在大家可以跑一遍xcode工程基本可以跑通了,今天太晚了就先写到这里明天再跟大家说一下细节,以及里面遇到的坑,真心坑的要死!!!
这是国外的一个大神写的暂时还不知道有什么作用

书写不易,纯手写喜欢的关注一下,有问题可留言

/
/
/

相关连接:
点击进入
点击进入

转发请标明出处!谢谢!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容