search
HomeBackend DevelopmentPHP TutorialiOS development questions (11)

iOS development questions (11)

Jan 20, 2017 am 09:54 AM

131. How to restrict ScrollView from scrolling in a certain direction?
For example, to restrict scrolling in the x direction, you can implement the UIScrollViewDelegate protocol method:

func scrollViewDidScroll(scrollView: UIScrollView) {
ifabs(scrollView.contentOffset.x) > 0 {
scrollView.contentOffset= CGPointMake(0, scrollView.contentOffset.y)
}
}

132. How to import the O-C framework into the Swift Framework target
Take BmobSDK as an example (CommonCrypto, etc. C/O-C framework is the same), when you add BmobSDK to Link Binary With Libraries, when you use the "importBmobSDK" statement, an error occurs: no such module
If you try to import BmobSDK using bridging headers, then will cause another error.
This is because Swift Framework does not support bridging headers files.
To solve this problem, you need to go through the following steps:
1) Create the BmobSDK directory in the project directory and place BmobSDK.framework in this directory. At the same time, create a module.map file in this directory with the following content:

module BmobSDK [system] {
header"/Users/kmyhy/Documents/Swift/code/第12章/kNote/BmobSDK/BmobSDK.framework/Headers/Bmob.h"
link "BmobSDK"
export *
}

This will allow us to use BmobSDK as a Swift module.
2) In Build Settings, find Import Paths (SWIFT_INCLUDE_PATHS) and add the BmobSDK directory. As shown in the figure below:

3) Import the BmobSDK framework in the swift file:
import BmobSDK

133. How to use CocoaPods in App Extension
Add this sentence in the Podfile :
link_with 'Extended name'
Add the bridging header file and set the Objective-C BridgingHeader.
134, error 'xxx.pch' has been modified since the precompiled header was builterror in Xcode
Execute deep Clean (shortcut key Option+Command+Shift+K)

135, Document Provider extension , the documentStorageURL property of DocumentPickerViewController returns nil.
Confirm that the App Groups of the container App, Document Provider extension and File Provider extension are set correctly. If there are any exclamation marks, please Fix them.
136. Inserting and deleting Cells in CollectionView
Same as TableView, we can use insertItemsAtIndexPaths()/deleteItemsAtIndexPaths() to insert/delete cells. The difference is that CollectionView no longer supports the beginUpdates()/endUpdates() operations. Insertion/deletion animation is supported by default. If you do not want the default animation effect, you can set the animationsEnabled property of UIView:

BOOL animationsEnabled = [UIView areAnimationsEnabled];
[UIView setAnimationsEnabled:NO];
[myCollectionView reloadItemsAtIndexPaths:myIndexPaths];
[UIView setAnimationsEnabled:animationsEnabled];

137. UICollectionView in UIScrollView will not scroll
Check whether UIScrollView is set delegate property, and check whether the scrollViewDidScroll method is implemented in delegate. If so, please delete the method (just canceling the delegate attribute will not work).
Also check the width (or width constraint), height (or height constraint), and list content size of UICollectionView, because when the list content is smaller than the width (or height) of UICollectionView, the scroll bar in this direction will not appear.
138. Why does the cell display incorrectly when it uses UITableViewCellStyleValue1?
UITableViewCell has several built-in types, such as UITableViewCellStyleDefault, UITableViewCellStyleValue1, and UITableViewCellStyleValue2.
These Cells are pre-configured by the SDK, and they present fixed built-in styles, such as font size, color, alignment, etc. If you want to modify these configurations, it is likely that the display is abnormal. For example, some text can be displayed for a while, and then not displayed, or the inherent font (and color) is displayed for a while, and then (for example, clicking a cell) is displayed again. Display the modified font (and color).
In this case, you're better off customizing your own cell (subclassing).
139. The size calculated by boundingRectWithSize is incorrect?
Pay attention to providing the correct options parameters. For UILabel, you need to use at least two options: UsesLineFragmentOrigin and UsesFontLeading:

CGRect paragraphRect =
[attributedTextboundingRectWithSize:CGSizeMake(300.f, CGFLOAT_MAX)
options:(NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading)
context:nil];

140. Bitwise OR (|) operation cannot be performed on multiple enumeration values ​​in Swift
Note that this problem is Fixed in iOS 8.3 SDK Beta 1 (12F5027d). For SDKs lower than this version, we can use the following code instead:

let options =unsafeBitCast(NSStringDrawingOptions.UsesLineFragmentOrigin.rawValue |
NSStringDrawingOptions.UsesFontLeading.rawValue,
NSStringDrawingOptions.self)
let frame = text.boundingRectWithSize(size, options:options, attributes:D,context:nil)

The above is the content of iOS Development Questions (11). For 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
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

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

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

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

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 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor