-
Notifications
You must be signed in to change notification settings - Fork 64
Description
I am using 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.
Does anyone has any idea, how I can 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-exceptionsflags, to filesSwiftTryCatch.handSwiftTryCatch.m? - Only add
-fobjc-arc-exceptionsflags, to filesSwiftTryCatch.h,SwiftTryCatch.mand any *.swift files which is usingSwiftTryCatch? - Add
-fobjc-arc-exceptionsflags to all 500+ files ?
Thank you.