I am using https://github.com/williamFalcon/SwiftTryCatch as a workaround for a rare NSInternalInconsistencyException
incident.
Here's the code snippet.
private func safePerformBatchUpdates(_ updates: (() -> Void)?, completion: ((Bool) -> Void)? = nil) {
SwiftTryCatch.try({
collectionView.performBatchUpdates(updates, completion: completion)
}, catch: { (error) in
print("\(error)")
Crashlytics.crashlytics().record(error: error)
recoverFromPerformBatchUpdatesError()
}, finally: nil)
}
In https://github.com/williamFalcon/SwiftTryCatch, it is mentioning
It was pointed out that without -fobjc-arc-exceptions flag this will lead to memory leaks http://clang.llvm.org/docs/AutomaticReferenceCounting.html#exceptions Therefore, ARC-generated code leaks by default on exceptions, which is just fine if the process is going to be immediately terminated anyway. Programs which do care about recovering from exceptions should enable the option.
How can I add -fobjc-arc-exceptions
flag correctly, into my Xcode?
These are the steps I am trying to do
- Select the project at the top left of the project window.
- Select the target.
- Open the build phases pane.
- Select "Compile Sources"
Now, there are around 500+ source code files. I was wondering, should I
- Only add
-fobjc-arc-exceptions
flags, to filesSwiftTryCatch.h
andSwiftTryCatch.m
? - Only add
-fobjc-arc-exceptions
flags, to filesSwiftTryCatch.h
,SwiftTryCatch.m
and any *.swift files which is usingSwiftTryCatch
? - Add
-fobjc-arc-exceptions
flags to all 500+ files?