Jobs

Results 51 issues of Jobs

![image](https://user-images.githubusercontent.com/13795605/143572931-3d7a891d-4800-4d4f-831b-29e6d6675a41.png)

![ECPrivacyCheckTools](https://user-images.githubusercontent.com/13795605/103403510-fc8f1800-4b82-11eb-981b-9cead30128a8.png) 你的demo是这样写的:👇 use_frameworks! platform :ios, '8.0' target 'ECPrivacyCheckTools_Example' do pod 'ECPrivacyCheckTools', :path => '../' target 'ECPrivacyCheckTools_Tests' do inherit! :search_paths pod 'FBSnapshotTestCase' end end

NSLocationAlwaysUsageDescription 我们需要您的同意,您的位置信息将用于查看当前位置信息 这个似乎遗漏了

1、因为是动画alpha,那么协议里面请配合这句使用,更丝滑: -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{ cell.alpha = 0; } 2、一定要在VC的生命周期viewDidAppear里面调用,因为此时NSArray *cells = tableView.visibleCells;里面才有不止一个cell的值 -(void)viewDidAppear:(BOOL)animated{ [super viewDidAppear:animated]; [TableViewAnimationKit showWithAnimationType:XSTableViewAnimationTypeFall tableView:self.tableView]; } 3、核心方法,建议将动画block调用传出去,但是作者是用objc_msgSend,我改了方法名会崩,我的处理方式是: +(void)roteAnimationWithTableView:(nonnull UITableView *)tableView{ [self roteAnimationWithTableView:tableView animationBlock:nil completionBlock:nil];...

https://www.codenong.com/js75ea7e40176d/ refresh in main Thread for UI

开始、暂停的文字 以及进度 这里有动画 我写了没用 比如: #pragma mark —— 点击事件 -(void)tapGRHandleSingleFingerAction:(UITapGestureRecognizer *)sender{ self.isClickStartOrPauseBtn = !self.isClickStartOrPauseBtn; if (self.isClickStartOrPauseBtn) { if (!_mytimer) { //启动 [self.mytimer fire]; self.backgroundColor = kRedColor; }else{ //继续 [self.mytimer setFireDate:[NSDate...

Multiple commands produce '/Users/admin/Library/Developer/Xcode/DerivedData/CoreData-Demo-dexygfsxedyjzldcwqwyccmthqpu/Build/Products/Debug-iphonesimulator/CoreData-Demo.app/Info.plist': 1) Target 'CoreData-Demo' (project 'CoreData-Demo') has copy command from '/Users/admin/Desktop/CoreData-master/CoreData-Demo/CoreData-Demo/System File/Info.plist' to '/Users/admin/Library/Developer/Xcode/DerivedData/CoreData-Demo-dexygfsxedyjzldcwqwyccmthqpu/Build/Products/Debug-iphonesimulator/CoreData-Demo.app/Info.plist' 2) Target 'CoreData-Demo' (project 'CoreData-Demo') has process command with output '/Users/admin/Library/Developer/Xcode/DerivedData/CoreData-Demo-dexygfsxedyjzldcwqwyccmthqpu/Build/Products/Debug-iphonesimulator/CoreData-Demo.app/Info.plist'

【需求单】 1、可以播放视频(本地 和 远程的); https://github.com/CoderZhuXH/XHLaunchAd 这个框架就可以播放视频,只是作者没有维护,但是可以看到作者的前瞻性,这么久了只是iOS系统Api升级造成的。 2、时间模块(计时器),单独用一个工具类进行封装,不要和业务代码裹在一起; 这是我自己封装的Timer框架https://github.com/295060456/JobsTimer 可以适当参考