Encountered a failure in the iOS build process when trying to upgrade from Xcode version 10.3 to

After migrating my existing React Native project from Xcode 10.3 to Xcode 11.5 on a new computer, I encountered an issue when trying to run it on iOS. Despite changing the settings to match the recommendations for Xcode, the problem persists.

When running the command react-native run-ios --device, I encountered the following error:

-[NSTaggedPointerString countByEnumeratingWithState:objects:count:]: unrecognized selector sent to instance 0xa29d44a23e70bdc1

Upon checking the logs, I found the following information:

(log details here)

The project worked fine on the previous machine with Xcode 10.3 and SDK 12.4, but now building the project on the new machine with Xcode 13.5 and SDK 13.5 is causing this issue.

I also checked the Podfile.lock for dependencies:

(Podfile.lock dependencies here)

Additionally, here is the output of react-native info:

(react-native project and environment info here)

Answer №1

Access the file YourAppName.xcworkspace and perform a clean build by using cmd+K

If this does not resolve your issue, try resetting the cache using this helpful guide

If you are still experiencing difficulties, refer to this informative forum post

I hope these solutions prove effective for you

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Are there any publicly accessible Content Delivery Networks that offer hosting for JSON2?

Everyone knows that popular tech giants like Google and Microsoft provide hosting for various javascript libraries on their CDNs (content distribution networks). However, one library missing from their collection is JSON2.js. Although I could upload JSON2 ...

Button with smooth animation in UIScrollView

After successfully adding the iCarousel to my project and displaying images, I am now attempting to create a method that will rotate the carousel when a button is clicked. Here's the code I have tried: - (IBAction) spinButton:(id)sender { [UIVie ...

Uncontrolled discord bot flooding with messages despite being set to send messages only once every 60 seconds

const Discord = require('discord.js'); const { Client, MessageAttachment } = require('discord.js'); const client = new Discord.Client(); client.once('ready', () => { console.log("Ready!") }) client.on(&apos ...

No longer will popups be blocked

I've been trying to work with jQuery to create a popup. But I'm facing an issue where my code is being blocked by Google. Here is the code snippet: <script type="text/javascript"> $(document).ready(function () { var flag = true; ...

Angular2+: Changing visibility of elements across multiple divs

Currently, my setup includes multiple divs containing toggling <i> elements. However, the issue I am facing is that when I click on one div's <i> (specifically the fa-bookmark), it triggers the toggling of all other corresponding <i> ...

Change the value in Vue through a single action (swapping out buttons)

I created a custom component that allows users to add points only once by clicking a button. I want to add an undo option to decrease the point value by 1 after it has been added. When a point is added, I'd like the button to change color to red and d ...

Tips for utilizing nodejs scripts in conjunction with the pug template engine

I am working with a node.js script that performs certain tasks and saves the results to a text file. Additionally, I have an index.pug file with a simple template that compiles to HTML. Is there a way for me to showcase the output of this script on an HT ...

Processing JSON Serialization from Controller to AJAX Response

I'm struggling to find the correct way to use an HttpWebRequest, and then convert its response into a readable format of JSON for a JavaScript AJAX function. If I just return the raw text, it includes escaping slashes in the response. If I deserializ ...

Convert a JSON object into a string using Node.js

Here is my code snippet: app.get('/status',function ( req,res) { var data = { "error": 1, 'data status': "" }; connection.query("SELECT * from status", function (err, rows, fields) { ...

Break big files into pieces and upload them incrementally with nodejs

I'm currently working on a project that involves uploading very large files in chunks to a server. The functionality on the server side is running smoothly, but I've encountered an issue with the client-side code. My approach so far has been to a ...

Ensuring correct association of values to avoid redundancies

There are 5 fields available for users to fill out on this form: Leave Code, From Date, Input Time1, To Date, and Input Time2. These variables are declared as a dates object in the .ts file, as shown below. interface Supervisor { name: string; code: s ...

Vue issue causing problems with Rangy library: "..." throwing a function error specifically within hooks

Utilizing the Rangy library in a Vue component enables me to highlight individual words within text. Everything functions smoothly when Rangy is invoked from any method within the methods object: let applier = rangy.createClassApplier('some-class&apo ...

Exploring ASP.NET Core 3.0: Animated Loading Icons

My latest project involves integrating a loading GIF, and I'm using ASP.NET Core 3.0 with Razor Pages for this task. It's been challenging for me as a newcomer to incorporate some Javascript or Ajax code to achieve the desired functionality. Upon ...

JavaScript EasyBitConverter

Looking to create a basic C# BitConverter equivalent in JavaScript, I've developed a simple BitConverter implementation. class MyBitConverter { constructor() {} GetBytes(int) { var b = new Buffer(8); b[0] = int; b ...

Angular 8 delivers an observable as a result following a series of asynchronous requests

I am working on a simple function that executes 3 asynchronous functions in sequence: fetchData() { this.fetchUsers('2') .pipe( flatMap((data: any) => { return this.fetchPosts(data.id); }), fl ...

Using Javascript to Highlight a Single Row in a Table

Greetings esteemed members of the skilled community at StackOverflow, I must humbly ask for your expertise in solving a dilemma that I am currently facing. The situation is as follows: I have a table generated from an SQL query, and it is crucial for the ...

The autocomplete feature fails to properly highlight the selected value from the dropdown menu and ends up selecting duplicate values

After working on creating a multiple select search dropdown using MUI, my API data was successfully transformed into the desired format named transformedSubLocationData. https://i.stack.imgur.com/ZrbQq.png 0: {label: 'Dialed Number 1', value: &a ...

A step-by-step guide on retrieving information from Material UI components and incorporating an onSubmit feature to transmit data to the backend server

I've recently started working with react/material-UI. While working on a project, I turned to youtube videos and various resources for guidance. I opted for material-UI due to its user-friendly nature. However, I'm currently facing a challenge ...

Keep rolling the dice until you hit the target number

Currently, I am in the process of learning JavaScript and one of my projects involves creating a webpage that features two dice images, an input box, and a button. The objective is for users to input a value, click the button, and then see how many rolls i ...

Displaying results as you scroll down within a container

I want to create a feature similar to Facebook where more results are loaded when the page is scrolled down. I need to style both an outer and inner div for this implementation. .Outer{ height: 1430px; margin-top: -12px; overflow: hidd ...