iOS开发知识小集

iOS开发Tips

2019-08-23  本文已影响0人  MrJ的杂货铺

1.button按钮修改文字闪烁问题

btn.titleLabel.text = @"111";//避免按钮闪动
[btn setTitle:@"111" forState:UIControlStateNormal];

2.TextView链接颜色修改问题

self.privacyTextV.linkTextAttributes = @{NSForegroundColorAttributeName:Color(250, 175, 40)};

3.自定义控件可在xib上使用

- (void)awakeFromNib {
    [super awakeFromNib];
    //custom code
}

4.键盘删除事件

//自定义TextField 重写deleteBackward方法
- (void)deleteBackward
{
    [super deleteBackward];
    //
}

5.enable和userInteraction的区别

6.connerstone add所有文件

7.collectionView的Item的间距

8.cell分割线偏移

if ([self.myTableView respondsToSelector:@selector(setSeparatorInset:)]) {
    [self.myTableView setSeparatorInset:UIEdgeInsetsMake(0, 15, 0, 0)];
}
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    //  分割线去掉左边15个像素
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }
}

9.imagePicker导航栏

_imagePicker.navigationBar.tintColor = [UIColor whiteColor];
_imagePicker.navigationBar.backgroundColor = [UIColor lt_hexStringToColor:@"#002A4C"];
// 设置字体颜色
NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
attrs[NSForegroundColorAttributeName] = [UIColor whiteColor];
[_imagePicker.navigationBar setTitleTextAttributes:attrs];

10.Xcode不自动不全

1.退出xcode
2.删除deriveData文件夹( ~/Library/Developer/Xcode/DerivedData)
3.删除com.apple.dt.Xcode文件(~/Library/Caches/com.apple.dt.Xcode)

11.Library not loaded: /usr/lib/libstdc++.6

真机:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/libstdc++.6.0.9.tbd
模拟器:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libstdc++.6.0.9.dylib

12.iOS 时间格式化

G:      公元时代,例如AD公元
yy:     年的后2位
yyyy:   完整年
MM:     月,显示为1-12,带前置0
MMM:    月,显示为英文月份简写,如 Jan
MMMM:   月,显示为英文月份全称,如 Janualy
dd:     日,2位数表示,如02
d:      日,1-2位显示,如2,无前置0
EEE:    简写星期几,如Sun
EEEE:   全写星期几,如Sunday
aa:     上下午,AM/PM
H:      时,24小时制,0-23
HH:     时,24小时制,带前置0
h:      时,12小时制,无前置0
hh:     时,12小时制,带前置0
m:      分,1-2位
mm:     分,2位,带前置0
s:      秒,1-2位
ss:     秒,2位,带前置0
S:      毫秒
Z:      GMT(时区)

iOS 13.collectionViewCell重写select

override var isSelected: Bool {
    willSet {
        if newValue {
                
        }else{
                
        }
    }
}

14.xib动画

self.inputViewBottomCon.constant = 40
UIView.animate(withDuration: duration, animations: {
    self.view.layoutIfNeeded()
})

15.主线程刷新UI

swift:
DispatchQueue.main.async {
    //刷新UI
}
OC:
dispatch_async(dispatch_get_main_queue(), ^{
   // UI更新代码
});
上一篇下一篇

猜你喜欢

热点阅读