ios 笔记

2016-06-17  本文已影响65人  想聽丿伱說衹愛我

1. Label的自动高度自适应与属性字符串

UILabel *label = [[UILabel alloc] init];
label.backgroundColor = [UIColor greenColor];
label.textColor = [UIColor whiteColor];
label.numberOfLines = 0;
NSString *str = @"123451dsa;flmdkalsjflnm\nf,.a\nsdl;fjsajldkfjlkasdf23455";
NSMutableAttributedString *noteStr =[[NSMutableAttributedString alloc] initWithString:str];
NSRange redRange = NSMakeRange(0, 20);
[noteStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:redRange];
[label setAttributedText:noteStr];
[label sizeToFit];
NSDictionary *attributes = @{NSFontAttributeName : label.font};
CGSize size =[str boundingRectWithSize:CGSizeMake(100, 0) options:NSStringDrawingUsesLineFragmentOrigin |NSStringDrawingUsesFontLeading attributes:attributes context:nil].size;
label.frame = CGRectMake(100, 100, size.width, size.height);
[self.view addSubview:label];

2. cell label高度自适应

    (void)cellForHeight:(NSArray *)itemData
    { 
    _content.lineBreakMode = NSLineBreakByWordWrapping;
    _content.preferredMaxLayoutWidth = CGRectGetWidth(_content.frame);
    _content.text = itemData[2];
    }
    (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
    BWMFoundCell *cell = [tableView dequeueReusableCellWithIdentifier:@"BWMFoundCell"];
    if (!cell){
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"BWMFoundCell" owner:self options:nil];
    for (id oneObj in nib){
    if ([oneObj isKindOfClass:[BWMFoundCell class]]){
    cell = (BWMFoundCell *)oneObj;
    }}}
    NSArray *item = _dataArr[indexPath.row];
    [cell cellForHeight:item];
    CGSize size = [cell.contentView systemLayoutSizeFittingSize:UILayoutFittingExpandedSize];
    return size.height +1;
    }

3. 自定义navigationbar

    (instancetype)initWithRootViewController:(BWMFoundDetail *)rootViewController{
    self = [super initWithRootViewController:rootViewController];
    if (self)
    {
    [self.view insertSubview:[uiview new] belowSubview:self.navigationBar];
    [self.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsCompact];
    self.navigationBar.layer.masksToBounds = YES;}
    return self;
    }
// [uiview new]即为替换navigationbar的视图
- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    [self.navigationController.navigationBar setShadowImage:[UIImage new]];
    [self.navigationController.navigationBar setBackgroundImage:[UIImage new]
                                                  forBarMetrics:UIBarMetricsDefault];
}
- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    [self.navigationController.navigationBar setShadowImage:nil];
    [self.navigationController.navigationBar setBackgroundImage:nil
                                                  forBarMetrics:UIBarMetricsDefault];
}

4. 更改navigationbar左右按钮位置

UIButton *buttonItem = [UIButton buttonWithType:UIButtonTypeCustom];
buttonItem.imageEdgeInsets = UIEdgeInsetsMake(0, -15, 0, 0);//
[buttonItem setImage:[UIImage imageNamed:@"icon_arrow_back"] forState:UIControlStateNormal];
[buttonItem sizeToFit];
buttonItem.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
[buttonItem addTarget:self
               action:@selector(backAction)
     forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *leftBarItem = [[UIBarButtonItem alloc] initWithCustomView:buttonItem];
self.navigationItem.leftBarButtonItem = leftBarItem;

5. 全局设ui appdelegate中

//设置UI
[[UINavigationBar appearance] setBarTintColor:BWMColor(253, 127, 3, 1)];
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
[[UITabBar appearance] setTintColor:BWMColor(247, 104, 0, 1)];
[[UINavigationBar appearance] setTitleTextAttributes:@{
    NSForegroundColorAttributeName : [UIColor whiteColor],
    NSFontAttributeName : [UIFont boldSystemFontOfSize:16]
}];

6. 去除左按钮箭头旁边的字 并可自定义

    #import "UINavigationItem+CustomBackButtom.h"
    #import <objc/runtime.h>

    @implementation UINavigationItem (CustomBackButtom)

    + (void)load
    {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
      Method originalMethodImp = class_getInstanceMethod(self, @selector(backBarButtonItem));
      Method destMethodImp =
          class_getInstanceMethod(self, @selector(myCustomBackButton_backBarbuttonItem));
      method_exchangeImplementations(originalMethodImp, destMethodImp);
    });
    }

    - (UIBarButtonItem *)backBarButtonItem
    {
    return [[UIBarButtonItem alloc] initWithTitle:@""
                                            style:UIBarButtonItemStyleBordered
                                           target:nil
                                           action:nil];
    }

    static char kCustomBackButtonKey;
    - (UIBarButtonItem *)myCustomBackButton_backBarbuttonItem
    {
    UIBarButtonItem *item = [self myCustomBackButton_backBarbuttonItem];
    if (item)
    {
        return item;
    }
    item = objc_getAssociatedObject(self, &kCustomBackButtonKey);
    if (!item)
    {
        item = [[UIBarButtonItem alloc] initWithTitle:@""
                                                style:UIBarButtonItemStyleBordered
                                               target:nil
                                               action:nil];
        objc_setAssociatedObject(self, &kCustomBackButtonKey, item,
                                 OBJC_ASSOCIATION_RETAIN_NONATOMIC);
    }
    return item;
    }

    @end

7. 防止键盘挡住输入框

    IQKeyboardManager *manager = [IQKeyboardManager sharedManager];
    manager.enable = YES;
    manager.shouldResignOnTouchOutside = YES;
    manager.shouldToolbarUsesTextFieldTintColor = YES;
    manager.enableAutoToolbar = NO;

8. 通过xib读取uivew

9. 获得当前view的viewcontroller

    - (UIViewController *)rootViewController {
        for (UIView* next = [self superview]; next; next = next.superview) {
            UIResponder *nextResponder = [next nextResponder];
            if ([nextResponder isKindOfClass:[UIViewController class]]) {
                return (UIViewController *)nextResponder;
            }
        }
        return nil;
    }

10. 自定义UITableViewCell(registerNib: 与 registerClass: 的区别)

11. macdown语法

12. 不定参数的使用

    + (void)test:(NSString *)string, ...   
    {  
        va_list args;  
        va_start(args, string);  
        if (string)   
        {  
            NSString *otherString;  
            while ((otherString = va_arg(args, NSString *)))   
            {  
                //依次取得所有参数  
            }  
        }  
        va_end(args);  
    }  

13. 隐藏Tabbar

BWMAllDevices *viewController = [BWMAllDevices new];
        viewController.hidesBottomBarWhenPushed = YES;
        [self.navigationController pushViewController:viewController animated:YES];
self.hidesBottomBarWhenPushed = YES;
BWMAllDevices *viewController = [BWMAllDevices new];
        [self.navigationController pushViewController:viewController animated:YES];
self.hidesBottomBarWhenPushed = NO;

13. 关于(0,0)的探究

self.automaticallyAdjustsScrollViewInsets = NO;
或者是
 self.scrollView.contentInset = UIEdgeInsetsMake(-64, 0, 0, 0);

14.

上一篇 下一篇

猜你喜欢

热点阅读