101. Compilation error: ld: library not found for -lPods
This error often occurs when cocoaPods is used in the project (usually during release).
This is because cocoaPods will create a new workspace after pod install. You must close the project and reopen it. The problem is solved.
102. Why is iOS time always 8 hours slower than the real time
For example, a Beijing time "2014-4-4 22:00" (string) needs to be converted into NSDate. Conversion of strings to NSDate is generally performed through NSDateFormatter. On iOS, NSDate is stored in GMT time, so NSDateFormatter will automatically process the local time of the current time zone of the string, that is, convert the converted Beijing time (string "2014-4-4 22:00") into GMT time (" 2014-4-4 14:00"). If you directly pass this NSDate (longlong, the number of seconds or milliseconds since 1970) to the server, the server will use this time as Beijing time (actually it is GMT time), which results in a time difference of 8 hours.
The correct approach is to add the time difference based on this NSDate. The calculation of the time difference requires knowing the current time zone. [NSTimeZonesystemTimeZone] can get the current time zone (East 8 Zone), and then use the secondsFromGMTForDate: method to get the time difference (in seconds) of this time zone (East 8 Zone). The code is as follows:
NSDateFormatter* df=[NSDateFormatter new]; // [dfsetLocale:[NSLocale currentLocale]]; df.dateFormat=@"yyyy-MM-dd HH:mm"; NSDate* date=[dfdateFromString:@"2014-4-4 22:00"]; NSTimeZone *zone =[NSTimeZone systemTimeZone]; NSInteger interval = [zonesecondsFromGMTForDate: date]; NSDate *localeDate =[date dateByAddingTimeInterval:interval]; NSLog(@"%@",localeDate);
103. Disable keyboard pop-up animation in UITableViewController
TableViewController has built-in code for keyboard pop-up animation. When the input control in the cell pops up the soft keyboard, the tableView will automatically move up scroll. But this feature sometimes causes big trouble, because sometimes the input control will be scrolled to an invisible place. Since we cannot modify the framework code, in this case we must give up using TableViewController (subclassing) and use general UIViewController+UITableView instead. But sometimes we have to use TableViewContrller - for example, if we want to use its static cells, we can solve it through the following methods. Override the viewWillAppear method in the UITableViewController subclass to disable the viewWillAppear behavior of the parent class. That is, don't call [superviewWillAppear:animated]:
-(void)viewWillAppear:(BOOL)animated{ // Override super method with don'tcall [super viewWillApper] }
104. When should you use NSCache
NSCache will automatically release one of the cache objects based on memory pressure (for example, the view is destroyed, Or there are too many cached objects). Therefore, the objects cached by NSCache must be rebuildable, such as these objects - data that can be downloaded from the network when needed. Otherwise, you shouldn't use NSCache - the object will be destroyed at some point.
Therefore, when using NSCache, you must pay attention. If the retrieved object does not exist in the cache, we must rebuild one:
-(CachedObject)getCachedObject:(id)key{ id* obj=[NSCacheObjectobjectForKey:key]; if (cb==nil) { obj=[[CachedObjectalloc]init]; // Recreate cached object …… } return obj; }
105. Pods Archive problem on Xcode5
Problem description :
The following error occurs when archive (may be normal when debugging):
ld: library not found for -lPods
The problem is because Xcode5.x will now detect the architecture of dependent projects, and its settings must be consistent with The main project must be consistent, otherwise the dependent project will be rejected (that is, it will not be compiled).
Solution:
Under all targets of the Pods project, set their architecture to be consistent with the main project.
106. How to check the Architecture supported by a static library
Use the "lipo -info static library file" command, for example:
lipo -info Unrar4iOS
Then the terminal will display as follows:
Architectures in the fat file: Unrar4iOS are: armv7 armv6 i386
107. Introducing certain static libraries into the project will cause "Undefined symbols for architecture armv7s/arm64" errors in Archive reports
As mentioned in question 105. In addition to using the solution in question 105, there is another workaround.
First check the Architecture of the static library (refer to question 106). Then modify Scheme to support the Architecture of the static library. Then modify Build Active ArchitectureOnly in Buid Settings (compile only for the selected architecture) and change the value to Yes. Then compile it.
108. Under Autolayout, the height of UITableView is incorrect
Under Autolayout, if there is a navigation bar, the UITableView on the view is restricted by constraints, and the runtime height is reset by constraints to the height without navigation bar. At this time, the viewDidLayoutSubviews method should be implemented to eliminate the influence of constraints:
- (void)viewDidLayoutSubviews { _table.frame=CGRectMake(0,0,self.view.frame.size.width,self.view.frame.size.height); }
109. How to modify the title of the default return button?
Assume the navigation is: A view -->B view
If you want to change the title of the return button of B view to return to A view, just use the following code in A view:
self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"返回" style:UIBarButtonItemStylePlain target:self action:nil]; B视图不用做任何操作。
110. There is an empty object, but it is neither nil nor null?
It is NSNull. You can print this object (using the po command or NSLog), and the printed result will be "
Since O-C collection objects do not allow the insertion of null values (nil), and NSNull is not nil, the NSNull object is used to indicate that the collection is empty (indicating the end of the list). Also, unlike nil, sending a message to an NSNull will cause an exception.
NSNull has the only method: [NSNull null] You can use it to test whether an object is NSNull:
BOOL isNSNull(id any){ return [any isEqual:[NSNullnull]]; }
以上就是iOS 开发百问(9)的内容,更多相关内容请关注PHP中文网(www.php.cn)!

iOS16是Apple移动设备的重大更新,因为它不仅引入了新功能,还为iPhone14Pro和ProMax带来了独家功能。这些新款iPhone是Apple首款配备常亮显示屏的iPhone。苹果对AOD的看法略有不同,不是整个屏幕变黑,而是显示变暗,刷新率动态降低到1Hz。不用说,这并不适合世界各地的许多用户和评论者,因为大多数人会不经意地检查他们的手机,并假设这是一条通知而不是AOD。Apple似乎已经在最新版本的iOS16中认识到并纠正了这个问题,增加

您可以在 iOS 16 上选择哪些数字格式随着对 iOS 16.4 (beta 2) 的更改,您可以为您的 iPhone 选择三种不同的数字格式。这些格式使用空格、逗号和句点作为分隔数字中千位的符号或作为小数点。小数点是用于将值的整数部分与其小数部分分开的字符,通常由句点 (.) 或逗号 (,) 分配。千位分隔符用于将多位数的数字分成三组,通常由句点 (.)、逗号 (,) 或空格 ( ) 指定。 在最新版本的 iOS 上,您将能够应用以下任何一种数字格式作为您 iPhone 的首选选项:1,23

浏览互联网已成为我们大多数人的第二天性,我们目前生活在一个时代,它已成为我们所做的几乎所有事情的代名词。它不仅是我们用来购物,或与亲朋好友相聚的地方,它也成为了一种宝贵的工作用具。自从COVID-19大流行开始,混合工作成为新常态以来,浏览器和通信软件已成为我们与同事之间的新纽带。而且,在我们所有流行的浏览器选择中,绝大多数用户决定使用谷歌的Chrome。现在,您不一定需要运行Microsoft支持的操作系统才能使用Chrome,因为该软件也可以在其他软件上正常运行。话虽这么说,如果您尝试在

虽然不需要的电话是日常生活的一部分,但您的 iPhone 提供了一些不同的选项来使特别顽固的来电者静音。这是在iOS 15上阻止或静音不需要的电话的方法。屏蔽电话号码可以为您减轻很多压力。一旦被阻止,您将不会收到来自被阻止号码的任何呼叫的提醒。此外,呼叫者将被允许留下语音邮件,但您不会收到已留下语音邮件的通知。打开电话应用滚动到您要阻止的号码点击号码旁边的信息图标向下滚动并点按阻止此来电者点击阻止联系人您也可以在FaceTime应用程序中按照相同的步骤来阻止持续的 FaceTime 呼叫者。被屏

微软待办已收到 iOS 更新,将版本升级至 2.75,并添加了一些值得注意的更改。最新版本的任务管理应用程序提供更流畅的体验。这是因为微软在最新版本的应用程序中引入了滚动改进。除此之外,最新版本还可能带有错误修复和改进。您可以在下面阅读完整的官方变更日志。微软待办 2.75 版几个月前,微软更新了它的 To Do iOS 应用程序,让用户更容易为他们的任务添加注释。它旨在为您的

iOS 16 已经准备好再次推动你放弃实体钱包。对 iOS 16 所做的更改包括一些仅限于美国地区的功能,但苹果也愿意将其部分功能开放给其他平台。首先,马里兰州和亚利桑那州现在支持 Apple 的数字身份验证服务 Wallet ID。除了这两个,Apple 还表示很快还会有另外 11 个,但没有任何关于哪些州的进一步信息。钱包 ID 也可以在 Uber 等应用中使用,并且不必分享您的具体信息。例如,它可以说您已超过 21 岁,但不提供您的实际年龄。Apple Wallet 中的数字密钥也可以通过

ios不是linux,ios实际上是Darwin的ARM变体,源自BSD,类UNIX内核以及Apple自己的Mach内核扩展系统;这与Linux是完全不同的,Linux是一个单片内核,所有驱动程序代码和I/O工具包都是核心内核的一部分。

苹果公司周二向开发人员发布了iOS 16.2 beta 2,因为该公司准备在 12 月向公众提供更新。正式地,它添加了新的 Freeform 协作应用程序和对 Home 应用程序的改进。在后台,9to5Mac发现 Apple 一直在开发一种新的“自定义辅助功能模式”,该模式将为 iPhone 和 iPad 提供“流线型”体验。自定义辅助功能模式这种代号为“Clarity”的新模式基本上用更精简的模式取代了 Springboard(这是 iOS 的主要界面)。该功能在当前测试版中仍对用户不可用,将


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

WebStorm Mac version
Useful JavaScript development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
