
iOS
wangooo
这个作者很懒,什么都没留下…
展开
-
AppStore ITMS-90129 The bundle uses a bundle name or display name that is already taken
AppStore上传打包App报错ERROR ITMS-90129: “The bundle uses a bundle name or display name that is already taken.”修改了bundle name、bundle display name还是报错最后修改了项目的工程名字后,上传通过。项目的工程名字,就是打包生成的app的名字。...原创 2021-08-10 15:33:57 · 2792 阅读 · 2 评论 -
AVPlayer seekToTime 跳到某一时刻
要使用 CMTime 数据结构CMTimeMake(a, b) a是当前播放的 第几帧,b表示每秒播放多少帧(fps)。 播放时间就是:a/b CMTimeMakeWithSeconds(a, b) a是当前时间,b表示每秒播放的帧数(fps)。 即 timeScale。CMTime算是一个对于time实际时间关于音视频处理的一个时间结构体。获取当前视频的 timeScale。playerItem.asset.duration 获取的总时长,返回 CMTime结构,里面有tim...原创 2021-08-01 19:51:45 · 1734 阅读 · 0 评论 -
UIScrollView 获取或设置 contentOffset 不准确
iOS11之后系统会默认当前Cell以上的所有Cell高度都为44,从而计算当前scrollView所在的位置。所以需要另外添加以下代码- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath { return 130;}或self.tableView.estimatedRowHeight=0;self.tableView.e.原创 2021-04-25 11:21:14 · 787 阅读 · 0 评论 -
UIScrollView Dragging Decelerating Delegate
1、- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView 手势滑动开始时调用2、- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate 手势滑动结束时调用,当decelerate 为 YES 时,说动滑动手势结束后会有一段减速过程,这时下面的方法才会调用。3、- (void)scrollViewWil.原创 2021-04-25 10:29:57 · 323 阅读 · 0 评论 -
renderInContext 使用CGBitmapContextCreate和Retina
手动创建了一个CGBitmapContextbitmapContext = CGBitmapContextCreate( myImageData, width, height, 8, 4 * width, colorSpace, kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big );并绘制一个图层:[self.myView.layer renderInContext:bitmapContext];但是,在Retina上.原创 2021-03-17 10:01:18 · 376 阅读 · 0 评论 -
CVPixelBufferCreate 将UIImage数组生成视频
CVPixelBufferCreate(kCFAllocatorDefault, imageSize.width, imageSize.height, kCVPixelFormatType_32ARGB, (__bridge CFDictionaryRef) options, &pxbuffer);保存图片数据的宽度必须是16的整倍数,否则生成的视频,每一帧图片都是变形的。用iPad录制时,因为iPad宽度为1024,是16的倍数,正好可以将UIImage数组生成视频。但是用iPhon.原创 2021-03-16 20:05:45 · 385 阅读 · 0 评论 -
iphone 默认只支持竖屏 某些界面只支持横屏
某 ViewController 支持横屏,且进入就是横屏- (instancetype)init { if (self = [super init]) { // 进入就横屏 只支持横屏 [KMGlobal setAllowRotate:YES]; } return self;}- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup aft原创 2021-03-16 15:30:43 · 304 阅读 · 0 评论 -
iphone popover
// This is your CustomPopoverController.m@interface CustomPopoverController () <UIPopoverPresentationControllerDelegate>@end@implementation CustomPopoverController.m- (instancetype)init { if (self = [super init]) { self.modalPres.原创 2021-03-11 15:45:27 · 155 阅读 · 0 评论 -
iOS 逻辑分辨率、物理分辨率
转:https://www.jianshu.com/p/2daa1298a5e6https://www.jianshu.com/p/41a8ccdf91edhttps://www.jianshu.com/p/1b24ca5e8c12iPhone分辨率总结设备 iPhone 屏幕尺寸 Screen Size 逻辑分辨率 Point 缩放因子Scale Factor 设备分辨率 (Pixel) 物理显示分辨率 (网站数据) PPI 缩放因子和PPI对应.转载 2021-03-08 10:20:22 · 2097 阅读 · 0 评论 -
UIButton文字左对齐
UIButton 文字是 titleLabel显示的如果设置btn.textLabel.textAlignment = UITextAlignmentLeft 表明 textlabel 里面的文字是左对齐的但实际并没有左对齐因为 UIButton 里面的 titleLabel 的frame,会适应文字大小,并在 UIButton 里面居中显示的。获取 UIButton 内部内容水平居中方式UIControlContentHorizontalAlignment alignment ..原创 2021-03-06 16:13:35 · 1008 阅读 · 0 评论 -
UIViewController dismiss时修改上一界面的textfield内容
viewcontroller1 present viewcontroller2在viewcontroller2 调用[vc dismissViewControllerAnimated:YES completion:nil]; 后直接对viewcontroller1 中的两个 textfield 内容进行了修改。但在 viewcontroller2 完全 dismiss 后,再去在viewcontroller1 里面,调用刚刚两个 textfield 的值,其内容还是原来的内容,不是修改...原创 2021-03-03 13:09:27 · 186 阅读 · 0 评论 -
UITextView 首行缩进
-(void)textViewDidChange:(UITextView *)textView{ //首行缩进 NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStylealloc] init];// paragraphStyle.lineSpacing = 20; //行间距// paragraphStyle.maximumLineHeight = 20; /**最大行高*/.原创 2020-09-26 21:17:11 · 798 阅读 · 0 评论 -
UITextView自定义文字属性后 光标自动跳到末尾的问题
在使用 UITextView 控件中,我们经常需要自定义文字的大小、行间距等属性,让用户输入文字时可以按照设置好的文字属性显示。- (void)textViewDidChange:(UITextView *)textView { // 设置content格式 // 字体 UIFont *font = self.font; // 设置格式属性 NSMutableParagraphStyle *paragraphStyle = [[NSMutabl原创 2020-09-26 21:14:54 · 1673 阅读 · 1 评论 -
NSSting 去掉首尾空格
NSString *string = [str stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];原创 2020-09-26 21:05:14 · 119 阅读 · 0 评论 -
ios url取querystring 用NSURLComponents
要取到URL地址里面到QueryString,然后再取出QueryString里面的每个参数1、可以使用 NSURLComponentsNSString *urlString = @"http://sso.qq.com:8088/login?code=b29eb6164d62d522ff09d64429a8e6a1&appid=12345&env=dev";NSURLComponents *urlComponents = [[NSURLComponents alloc] ini原创 2020-09-16 15:40:18 · 1127 阅读 · 0 评论