快上网专注成都网站设计 成都网站制作 成都网站建设
成都网站建设公司服务热线:028-86922220

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

iOS静态库结合Bundle隐藏代码,对外接口整理

1. 新建一个静态库工程bundle

成都创新互联专注于企业成都全网营销推广、网站重做改版、襄州网站定制设计、自适应品牌网站建设、HTML5商城网站制作、集团公司官网建设、外贸营销网站建设、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为襄州等各大城市提供网站开发制作服务。

iOS 静态库结合Bundle隐藏代码,对外接口整理

2. 新建一个Viewcontroller

iOS 静态库结合Bundle隐藏代码,对外接口整理

3. 新建一个Target Bundle并指定SDK为iOS, 并将TestViewController.xib加到Copy Bundle Resouce

iOS 静态库结合Bundle隐藏代码,对外接口整理

iOS 静态库结合Bundle隐藏代码,对外接口整理

5. bundle 代码如下

#import 
#import 
@interface bundle : NSObject
- (void) addViewController:(UIView *)view;
@end
#import "bundle.h"
#import "TestViewController.h"
@implementation bundle
- (void) addViewController:(UIView *)view
{
    NSBundle *bundle = [NSBundle bundleWithURL:[[NSBundle mainBundle] URLForResource:@"Test" withExtension:@"bundle"]];
    TestViewController *testCtrl = [[TestViewController alloc] initWithNibName:@"TestViewController" bundle:bundle];
    [view addSubview:testCtrl.view];
}
@end

6. 新建一个工程TestBundle, 把libbundle.a,Test.bundle拖入到工程中,然后调用即可

iOS 静态库结合Bundle隐藏代码,对外接口整理

#import "ViewController.h"
#import "bundle.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
           
    bundle * addView = [[bundle alloc] init];
    [addView addViewController:self.view];
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
@end

iOS 静态库结合Bundle隐藏代码,对外接口整理


当前名称:iOS静态库结合Bundle隐藏代码,对外接口整理
路径分享:http://6mz.cn/article/isjiee.html

其他资讯