search
HomeBackend DevelopmentPHP TutorialiOS development questions (8)

iOS development questions (8)

Jan 20, 2017 am 09:44 AM

90. Profile not found error "CodeSign error: no provisioning profile at path '/Users/yourname/Library/MobileDevice/ProvisioningProfiles/F87A055A-EC0D-4F19-A015-57AB09DEBECB.mobileprovision'"
In ProjectNavigator Select your project and use View ->Version Editor -> Show Version Editor (or use the "iOS development questions (8)
" button on the toolbar). Edit in the current version (that is, the text pane on the left), search for the "F87A055A-EC0D-4F19-A015-57AB09DEBECB" string, and then change all ""PROVISIONING_PROFILE[sdk=iphoneos*]"="F87A055A-EC0D-4F19 -A015-57AB09DEBECB ";" line is deleted.
91. In iOS 7, the navigation bar overlaps the view of the ViewController (that is, the view moves up 44 pixels)
Set the Top Bar of the navigation controller to an "Opacque..." (opaque) type.
92. Why are the navigation bar's toughBarButtonItems displayed in the opposite order to when they were added?
The items in rightBarButtonItems are added from right to left when added.
Suppose we add 3 buttons to rightBarButtonItems like this:
[self.navigationItem setRightBarButtonItems:@[b1,b2,b3]animated:NO]; Then the order of the 3 buttons you see is: b3, b2,b1.
93. Why sometimes after installing a program through OTA, there will be an extra "Installing..." icon and the icon cannot be deleted?
This problem only exists under iOS 7. As shown in the figure below:


iOS development questions (8)

Among them, "Network Assistant" is the icon that appears on the desktop after the program is installed, and "Installing..." is the installation process. The icon displayed in , this icon still exists after the installation is completed, and the user cannot delete it.
This is caused by the inconsistency between the bunndle id in the installation description file (.plist file) and the .ipa file. The solution is to modify the project's Bundle ID to the Bundle ID in the .plist file, compile a new .ipa file, and then reinstall the .ipa file on the device. At this time, the "Installing..." icon can be deleted.
94. The SDK header file was unintentionally modified. Xcode reported "'xxx.h' has been modified since the precompiled header was built"
Clean. It still failed to compile. When closing Xcode, Xcode prompted that the file does not exist. , cannot save automatically, and does not allow exit. Use "Force Quit..." to close Xcode, Clean, and recompile successfully.
95. The in-house release under iOS 7.1 cannot install the app, and the report "Could not load non-https manifest URL"
Put the manifest.plist file used for deployment on the https server, and change the manifest URL by The original http address is changed to https address.
96. How to make the image of UIButton located on the right side of the title?
By default, the image of UIButton is located to the left of the title:
iOS development questions (8)
But sometimes you may want it to be like this:
iOS development questions (8)
You need to use the setImageEdgeInsets method:

float width = _button.bounds.size.width;
[_buttonsetImageEdgeInsets:UIEdgeInsetsMake(0, width-_button.imageView.bounds.size.width,0, 0)];
[_buttonsetTitleEdgeInsets:UIEdgeInsetsMake(0, -_button.imageView.bounds.size.width+5,0, 0)];

97. Modify the section header style of the table view
Please use the willDisplayHeaderView method in UITableViewDelegate.

- (void)tableView:(UITableView *)tableViewwillDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
if([viewisKindOfClass:[UITableViewHeaderFooterView class]]){
UITableViewHeaderFooterView *tableViewHeaderFooterView =(UITableViewHeaderFooterView *) view;
tableViewHeaderFooterView.contentView.backgroundColor = [UIColorclearColor];
tableViewHeaderFooterView.textLabel.font=[UIFont systemFontOfSize:13];
tableViewHeaderFooterView.textLabel.textColor=[UIColor blackColor];
}
}

98. Customize the background color of the search bar

for (UIView *subview in self.searchBar.subviews)
{
if([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")])
{
[subview removeFromSuperview];
break;
}
}
self.searchBar.backgroundColor = [UIColor colorWithWhite:0.85 alpha:1];

99. UIScrollView will not scroll under Autolayout
Only when the ContentSize of UIScrollView is greater than the frame size of UIScrollView, UIScrollView can scroll.
However, due to the influence of constraints, setting ContentSize is often invalid, so UIScrollView cannot be scrolled. We can implement the viewDidLayoutSubviews method and set ContentSize in this method:

- (void)viewDidLayoutSubviews {
_scrollView.contentSize=CGSizeMake(_scrollView.frame.size.width,_scrollView.frame.size.height+60);
}

100. A certain type "Unknown type name" appears in the header file
In fact, the framework or library where the type is located has been Be quoted. For example, the error "Unknown type name CGPoint" occurs, and the framework CoreGraphics where CGPoint is located has been correctly referenced by the project.
This error is caused by "cross header file reference". A typical error is that a header file (e.g. a.h) is included in a .pch file. And .pch files are automatically included when compiling any .m files. Therefore, if you want to include an a.h file in a .pch file, the correct way is to use the #ifdef__OBJC__ macro:

#ifdef __OBJC__
#import "a.h"
#endif

The above is the content of iOS Development Questions (8), more related content Please pay attention to the PHP Chinese website (www.php.cn)!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

Simple Guide: Sending Email with PHP ScriptSimple Guide: Sending Email with PHP ScriptMay 12, 2025 am 12:02 AM

PHPisusedforsendingemailsduetoitsbuilt-inmail()functionandsupportivelibrarieslikePHPMailerandSwiftMailer.1)Usethemail()functionforbasicemails,butithaslimitations.2)EmployPHPMailerforadvancedfeatureslikeHTMLemailsandattachments.3)Improvedeliverability

PHP Performance: Identifying and Fixing BottlenecksPHP Performance: Identifying and Fixing BottlenecksMay 11, 2025 am 12:13 AM

PHP performance bottlenecks can be solved through the following steps: 1) Use Xdebug or Blackfire for performance analysis to find out the problem; 2) Optimize database queries and use caches, such as APCu; 3) Use efficient functions such as array_filter to optimize array operations; 4) Configure OPcache for bytecode cache; 5) Optimize the front-end, such as reducing HTTP requests and optimizing pictures; 6) Continuously monitor and optimize performance. Through these methods, the performance of PHP applications can be significantly improved.

Dependency Injection for PHP: a quick summaryDependency Injection for PHP: a quick summaryMay 11, 2025 am 12:09 AM

DependencyInjection(DI)inPHPisadesignpatternthatmanagesandreducesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itallowspassingdependencieslikedatabaseconnectionstoclassesasparameters,facilitatingeasiertestingandscalability.

Increase PHP Performance: Caching Strategies & TechniquesIncrease PHP Performance: Caching Strategies & TechniquesMay 11, 2025 am 12:08 AM

CachingimprovesPHPperformancebystoringresultsofcomputationsorqueriesforquickretrieval,reducingserverloadandenhancingresponsetimes.Effectivestrategiesinclude:1)Opcodecaching,whichstorescompiledPHPscriptsinmemorytoskipcompilation;2)DatacachingusingMemc

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version