前言:
1、FrameWork 使用静态和动态的方式在 Command R 的时候还是有点区别的
2、本篇继续上一篇,使用静态的方式做一个FrameWork
3、不厌其烦地、重复地、玩着这个库。
在制作 FrameWork 的时候 Mach-O Type 选择有两个,本篇是 Static Librar。
Static 方式没有配置的话,直接运行是不会崩溃的,只是读不到文件。Dynamic方式没有配置的话,运行会崩溃。
开始
图片高清,Command + “+” 放大阅读
1、创建Bundle工程
2、修改 Base SDK
3、修改 COMBINE_HIDPI_IMAGES
4、修改 Skip Install
5、引入图片文件
6、创建Plist文件
7、创建XIB文件
8、拖放按钮 创建代码文件 连线
9、拖放按钮 创建代码文件 连线
为什么要在这里搞代码文件呢,因为代码文件要和XIB连线,这样弄出来的XIB才会有意义,所以在打包工程里面, 直接创建代码文件进行连线,然后把代码文件拖到FrameWork里。最好应该是先创建一个App,把所有的功能都写好,然后 分别创建 Bundle工程和FrameWork工程,把代码和资源文件分开,再合并,做成一个完整的FrameWork。
10、检查文件
11、编译bundle
12、创建FrameWork项目
13、修改 Build Active Architecture Only
14、修改 Mach-O Type
注意,这里是静态库。
15、引入代码
16、引入bundle
17、写代码
写代码访问资源文件,这里是静态库资源的访问方式,完整的代码在文章末尾。
18、暴露文件
19、暴露文件
20、编译FrameWork文件,设置Scheme
做这一步的目的是为了让这个FrameWork 同时支持真机和模拟器运行。
21、编译模拟器版本
随便选个模拟器,按下 Command + B
22、编译真机版本
选择“Generic iOS Device”,按下 Command + B
23、合并
合并使用到的命令,根据你的FrameWork名称做相应的替换。
lipo -create Release-iphoneos/Yuency.framework/Yuency Release-iphonesimulator/Yuency.framework/Yuency -output Yuency
24、寻找周杰伦
25、创建App工程进行测试
26、引入FrameWork 1
27、引入FrameWork 2
28、Command + R
必要的代码
SunView.h
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface SunView : UIView
/// 中间按钮
@property (weak, nonatomic) IBOutlet UIButton *buttonCenter;
- (instancetype)initWithFrameStatic:(CGRect)frame;
+ (instancetype)initFromXIBStatic;
+ (void)showPlistContentStatic;
@end
NS_ASSUME_NONNULL_END
SunView.m
#import "SunView.h"
@implementation SunView
- (IBAction)actionButton:(UIButton *)sender {
NSLog(@"按钮点击相应!");
}
- (instancetype)initWithFrameStatic:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
NSString *bundlePaht = [[NSBundle mainBundle] pathForResource:@"Yuency.framework/Work" ofType:@"bundle"];
NSBundle *myBundle = [NSBundle bundleWithPath:bundlePaht];
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)initFromXIBStatic {
NSString *bundlePaht = [[NSBundle mainBundle] pathForResource:@"Yuency.framework/Work" ofType:@"bundle"];
NSBundle *myBundle = [NSBundle bundleWithPath:bundlePaht];
SunView *view = [myBundle loadNibNamed:@"SunView" owner:nil options:nil].firstObject;
return view;
}
+ (void)showPlistContentStatic {
NSString *bundlePaht = [[NSBundle mainBundle] pathForResource:@"Yuency.framework/Work" ofType:@"bundle"];
NSBundle *myBundle = [NSBundle bundleWithPath:bundlePaht];
NSString *p = [myBundle pathForResource:@"b" ofType:@"plist"];
NSDictionary *dic = [NSDictionary dictionaryWithContentsOfFile:p];
NSLog(@"文件内容: %@", dic);
}
@end