前言:
1、也算是花了点时间去弄这个东西呢。
2、恶心,不想说话
在制作 FrameWork 的时候 Mach-O Type 选择有两个,本篇是 Dynamic Library。
Static 方式没有配置的话,直接运行是不会崩溃的,只是读不到文件。Dynamic方式没有配置的话,运行会崩溃。
开始
图片高清,Command + “+” 放大阅读
1、创建Bundle工程
1 新建工程.png2、修改 Base SDK
2 .png3、修改 COMBINE_HIDPI_IMAGES
3.png4、修改 Skip Install
4.png5、引入图片文件
5 拖入图片.png6、创建Plist文件
6 新建plist文件.png7、创建XIB文件
7 新建XIB.png8、拖放按钮 创建代码文件 连线
8 拖入按钮.png9、拖放按钮 创建代码文件 连线
为什么要在这里搞代码文件呢,因为代码文件要和XIB连线,这样弄出来的XIB才会有意义,所以在打包工程里面, 直接创建代码文件进行连线,然后把代码文件拖到FrameWork里。最好应该是先创建一个App,把所有的功能都写好,然后 分别创建 Bundle工程和FrameWork工程,把代码和资源文件分开,再合并,做成一个完整的FrameWork。
9 拖入按钮.png
10、检查文件
10 确认过眼神.png11、编译bundle
11 寻找bundle.png12、创建FrameWork项目
12 创建新项目.png13、修改 Build Active Architecture Only
13 build arch.png14、修改 Mach-O Type
注意,这里是动态库。
14 动态库.png
15、引入代码
15 引入代码.png16、引入bundle
16 引入bundle.png17、写代码
写代码访问资源文件,这里是动态库的资源文件访问方式,完整的代码在文章末尾。
17 访问文件.png
18、暴露文件
18 暴露文件1.png19、暴露文件
19 暴露名称.png20、编译FrameWork文件,设置Scheme
做这一步的目的是为了让这个FrameWork 同时支持真机和模拟器运行。
20 编译 设置shcema.png
21、编译模拟器版本
随便选个模拟器,按下 Command + B
21 模拟器编译.png
22、编译真机版本
选择“Generic iOS Device”,按下 Command + B
22 真机编译.png
23、合并
合并使用到的命令,根据你的FrameWork名称做相应的替换。
lipo -create Release-iphoneos/Yuency.framework/Yuency Release-iphonesimulator/Yuency.framework/Yuency -output Yuency
23 合并包.png
24、寻找周杰伦
24 包.png25、创建App工程进行测试
25 创建App工程 进行测试.png26、对引入的fram进行设置
26 设置库.png27、Command + R
27 完工.png必要的代码
SunView.h
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface SunView : UIView
/// 中间按钮
@property (weak, nonatomic) IBOutlet UIButton *buttonCenter;
- (instancetype)initWithFrame:(CGRect)frame;
+ (instancetype)initFromXIB;
+ (void)showPlistContent;
@end
NS_ASSUME_NONNULL_END
SunView.m
#import "SunView.h"
@implementation SunView
- (IBAction)actionButton:(UIButton *)sender {
NSLog(@"按钮点击相应!");
}
- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
NSBundle *dynamicBundle = [NSBundle bundleForClass:[SunView class]];
NSURL *bundelURL = [dynamicBundle URLForResource:@"Work" withExtension:@"bundle"];
NSBundle *myBundle = [NSBundle bundleWithURL:bundelURL];
NSString *path = [myBundle pathForResource:@"a" ofType:@"jpg"];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.bounds];
imageView.image = [UIImage imageWithContentsOfFile:path];
[self addSubview:imageView];
}
return self;
}
+ (instancetype)initFromXIB {
NSBundle *dynamicBundle = [NSBundle bundleForClass:[SunView class]];
NSURL *bundelURL = [dynamicBundle URLForResource:@"Work" withExtension:@"bundle"];
NSBundle *myBundle = [NSBundle bundleWithURL:bundelURL];
SunView *view = [myBundle loadNibNamed:@"SunView" owner:nil options:nil].firstObject;
return view;
}
+ (void)showPlistContent {
NSBundle *dynamicBundle = [NSBundle bundleForClass:[SunView class]];
NSURL *bundelURL = [dynamicBundle URLForResource:@"Work" withExtension:@"bundle"];
NSBundle *myBundle = [NSBundle bundleWithURL:bundelURL];
NSString *p = [myBundle pathForResource:@"b" ofType:@"plist"];
NSDictionary *dic = [NSDictionary dictionaryWithContentsOfFile:p];
NSLog(@"文件内容: %@", dic);
}
@end
网友评论