码迷,mamicode.com
首页 > 移动开发 > 详细

李洪强iOS开发之静态库的打包一

时间:2017-06-27 20:01:41      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:nts   get   uikit   oval   加载   copy   add   lin   orm   

李洪强iOS开发之静态库的打包一

//静态库一般做一下几种事情

    //1 工具类 算法逻辑

 

新建工具类LHQTools

技术分享

 

定义类方法

+ (NSInteger)sumWithNum1: (NSInteger)num1 andNum2:(NSInteger)num2;

 

类方法的实现

+(NSInteger)sumWithNum1:(NSInteger)num1 andNum2:(NSInteger)num2{

    

    return num1 + num2;

}

 

使用

在主控制器计算值

 NSLog(@"%ld",(long)[LHQTools sumWithNum1:10 andNum2:10]);

技术分享

 


//2 实现加载一定的资源,放在bundle中避免资源重名

 

将存放图片的bundle拖入文件夹

技术分享

定义类方法

+ (UIImage *)loadLogo;

实现类方法

+(UIImage *)loadLogo{

    //把图片封装到bundle里面

    return [UIImage imageNamed:@"CZTools.bundle/logo.png"];

}

 

来到主控制器中使用

UIImageView *imageView1 = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];

    imageView1.image = [LHQTools loadLogo];

    [self.view addSubview:imageView1];

 

这个时候,运行程序,会显示这张图片

 

技术分享

 

 

 

 //3 封装视图

新建继承自UIView的类 

技术分享

 

定义类方法

#import <UIKit/UIKit.h>

 

@interface LHQDemoView : UIView

- (instancetype)initWithFrame:(CGRect)frame andCompelete:(void(^)(NSString *msg))block;

@end

 

实现类方法

 

#import "LHQDemoView.h"

@interface LHQDemoView()

//block定义的时候一定要用copy

/*

 block默认在栈中  栈中内存归系统管理

 系统管理有个弊端:到作用于结束就被干掉

 执行了一个copy操作之后,就会把block从栈中放到堆中

 会自动有一个强引用来指向它

 

 

 */

@property(nonatomic,copy)void(^block)(NSString *);

@end

@implementation LHQDemoView

 

- (instancetype)initWithFrame:(CGRect)frame andCompelete:(void(^)(NSString *msg))block{

    if(self = [super initWithFrame:frame]){

        UIButton *btn = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 50, 50)];

        [btn setTitle:@"提示" forState:UIControlStateNormal];

        [btn addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];

        [self addSubview:btn];

        self.block = block;

    }

    return self;

}

 

- (void)btnClicked: (UIButton *)btn{

    self.block(@"点击了某个按钮");

    NSLog(@"btnClicked");

}

 

- (void)drawRect:(CGRect)rect{

    //画一个圆

    UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:self.bounds];

    [[UIColor redColor]setFill];

//    [path stroke];

    [path fill];

}

 

 

 

来到主控制器中调用: 

//3 封装视图

    LHQDemoView *demoView = [[LHQDemoView alloc]initWithFrame:CGRectMake(100, 200, 100, 100) andCompelete:^(NSString *msg) {

        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"温馨提示" message:msg delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:nil, nil];

        [alert show];

    }];

    [self.view addSubview:demoView];

 效果: 

技术分享

 

 

李洪强iOS开发之静态库的打包一

标签:nts   get   uikit   oval   加载   copy   add   lin   orm   

原文地址:http://www.cnblogs.com/LiLihongqiang/p/7086574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!