I have a Xcode project, my small mac app runs all successfully within Xcode test run after compile, but by running the debug or release build by itself, the app become unresponsive after start running. No error or warning during building.
I don't know where to look to start troubleshooting this, so totally stuck. How do you start investigating for the issue like this?
app runs within Xcode project, but not after built
24 Views Asked by WeeklyJump At
1
There are 1 best solutions below
Related Questions in XCODE8
- App not visible when share content from Apple news and Safari
- ios 17 interactive widget api call in background
- iOS release firebase
- Failed to create provisioning profile for IOS simulator
- how to auto focus editor on Xcode
- Different State Variables for New Textfields in SwiftUI
- Getting Errors Installing Pods
- How to save selected option in UIPickerView
- UITableView cell deletion not working even after deleting a particular cell
- How do I pass data after reloading the cell to another view controller
- Swift: "Expected expression after operator" error in NSManaged while trying to push a record to entity
- Ionic Capacitor in Xcode Error - [warn] Native: tried calling StatusBar.overlaysWebView, but the StatusBar plugin is not installed
- How to connect a fully functioning iOS app to a new Firebase project
- unable to install hyper kit on mac as it is showing an error during a brew intall
- Wait for Asynchronous request before execution of other code
Related Questions in ARCHIVE
- Git: backup (or archive) stale remote branches
- Custom template for custom taxonomy
- Job log management system
- Having an archive page with categories and tags
- Error creating archive applications ios
- Search for file in archive and load it into memory
- Conditional text for certain categories within taxonomy.php
- BizTalk file Archive
- Mailchimp Newsletter archive generation via js and ssl doesn't work
- Using PHP, how can I identify, (decompress if applicable), and extract the files from .tar, .gz, .tar.gz, .zip files?
- Archive data (table rows) mysql
- Restamping CAdES-A using Digital Signature Service from joinup.ec.europa.eu.
- Resolve JasperReports resource paths from inside an archive (embedded tomcat application)
- How to rename a file inside a 7zip archive by CLI?
- Git Archive Based on Merged Date
Related Questions in HUNG
- python program getting stuck in between
- Windbg !analyze -v hang and .NET not producing expected result
- Why PySpark code hangs for a while and then terminates abruptly while accessing a dataframe
- PdfBox Alpha 3.0.0-alpha3 , PDType1Font constructor issue
- JVM hangs during the serialization
- Child Process (created after forking) when ssh to linux machine from windows getting stuck on windows after sometime
- Ansible play hung freezes when python interpreter not found
- Runing into a deadlock when using Popen.wait()
- fatal: the remote hung up unexpectedly. Can’t push things to my git repo
- JMX Admin Client for Thread Hung Notifications
- Jenkins falls into deadlock while executing a pipeline in parallel
- Python Speech_Recognition hung up on mic listening
- Tibco process gets stuck at JDBC query activity intermittently, How to indentify what is the issue?
- Apache.NMS.ActiveMQ client hang when connection has been broken
- .net web application hangs when finalizer gets blocked
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I would start by setting an exception breakpoint for your project in Xcode. Xcode will pause your app when it throws an exception. Exceptions are thrown when runtime errors occur in your code. Setting an exception breakpoint can help you find the problem in your code.
If no exception breakpoints fire when you debug the app in Xcode, you will need to update your question with more information about your app. Is your app a GUI app or a command-line app? Does your app do anything special at startup, such as load files?