Search results for

“Visual Studio Maui IOS”

109,103 results found

Post

Replies

Boosts

Views

Activity

Reply to Only iOS13 and up?
I think Apple developer of Xcode team should learn from Google Android Studio and Microsoft Visual Studio a lot of thing. Android studio allow user select minSDK first , before code template generating is perform. Let see the template project from Google and Microsoft, Template code project between first and last version is almost same.
Dec ’23
Segmentation fault: 11 in Visual Studio Code M1 chip
Hi! Can you help me? #define _CRT_SECURE_NO_WARNINGS #include #include #include struct Farmacie { char *denumire; int nr_angajati; float *salarii; int an_infiintare; }; struct Farmacie initializare(const char *denumire, int nr_angajati, float *salarii, int an_infiintare) { struct Farmacie f; f.nr_angajati = nr_angajati; f.an_infiintare = an_infiintare; f.denumire = malloc((strlen(denumire) + 1) * sizeof(char)); strcpy(f.denumire, denumire); f.salarii = malloc(sizeof(float) * nr_angajati); for (int i = 0; i < nr_angajati; i++) { f.salarii[i] = salarii[i]; } return f; } void afisareFarmacie(struct Farmacie f) { printf(Denumire: %s, infiintata in: %d, f.denumire, f.an_infiintare); printf(, nr. angajati: %d, cu salariile: , f.nr_angajati); for (int i = 0; i < f.nr_angajati; i++) printf(%5.2f, , f.salarii[i]); printf(n); } struct Farmacie copiere(const struct Farmacie f2) { struct Farmacie aux; aux.an_infiintare = f2.an_infiintare; aux.nr_angajati = f2.nr_angajati; aux.denumire = malloc((strlen(f2.denumir
0
0
577
Mar ’23
Reply to Xcode New File
You have to create a new project in Xcode for each program you write. Creating a new project for each program is annoying when learning a language and writing small programs. I recommend using a text editor such as TextMate, BBEdit, or Visual Studio Code for learning C++. TextMate has a bundle that will let you run your programs from inside the editor. Visual Studio Code probably has an extension to run your programs inside the editor. I'm not sure if BBEdit has a way to run your programs from the editor.
Nov ’20
Reply to 2nd ViewController
Thanks for your help. This is my first venture into iOS programming. I have used many IDEs for quite a few compilers and builders, from simple C code compilers to NetBeans and Microcrap's Visual Studio. Xcode and Swift are some strange critters. I built a really nice (and somewhat complex) second visualController, named ValuesView in Storyboard that shows everything I need to display my data. Since I can't find the code for that visual Controller, is there any way I can make is a subclass of the first visual Controller without losing the items and placement of what I had built? If that isn't possible, can I rebuild ValuesView with Storyboard? How would I do that?
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’19
Reply to Interface Builder is bad and getting worse
If you've used a system that allows you create the UI using code such as Visual Studio on Windows you find that as a coder, you enjoy the transparency and control IB helps you get things up quickly but it hides too much i.e. they've taken the abstracting out of the details a bit too far making simple things easier to do but complicating any transgressions of the usual way of doings Visual Studio for example also enables you to go visual (hence the name) but it also lets you go pedal to the metal and generate your whole UI in code IB/Cocoa doesn't really let you do that at least not in a way evident to a beginner
Jan ’17
Reply to Not receiving ES notification for inflated files
Perfect! Exactly what we needed. I was searching through the telemetry as if it would be reported as /Downloads/$SOME_FILE but eslogger reports it as destination type and file name. This is going to make life a bit harder with what we're trying to do, but thanks Quinn! For those curious it looks something like this: { event: { rename: { destination: { new_path: { dir: { path: /Users/brandondalton/Downloads }, filename: Visual Studio Code.app } }, source: { path: /private/var/folders/8b/fg_9sj9j2_9c0ghl_knlpp1c0000gp/T/com.apple.desktopservices.ArchiveService/TemporaryItems/NSIRD_ArchiveService_oK7iOq/Visual Studio Code.app } } } }
Topic: Privacy & Security SubTopic: General Tags:
Feb ’23
MAUI AppIcon not created
Hi folks, When trying to distribute my app with transporter, I'm stuck for 2 days on asset validation with the following error : Asset validation failed (90704) Missing app icon. Include a large app icon as a 1024 by 1024 pixel PNG in the asset catalog of apps built for iOS, iPadOS, or watchOS. Without this icon, apps can't be submitted for review.... I tried many workarounds, switching to svg, then png, then svg again, create an asset group with many file sizes, go back to simpliest implementation... I'm using Visual studio 17.9.2 (rollback from more recent version due to incompatibility with XCode), a macbook air with sonoma 14.4 and Xcode 15.3. Has anyone had the same problem and found a solution ?
0
0
556
Apr ’24
Reply to Only iOS13 and up?
I think Apple developer of Xcode team should learn from Google Android Studio and Microsoft Visual Studio a lot of thing. Android studio allow user select minSDK first , before code template generating is perform. Let see the template project from Google and Microsoft, Template code project between first and last version is almost same.
Replies
Boosts
Views
Activity
Dec ’23
Reply to A valid copy of xcode cannot be found
Visual Studio is a Microsoft product: Please go to Microsoft for all questions related to their products https://visualstudio.microsoft.com/vs/support/mac/
Replies
Boosts
Views
Activity
Mar ’23
Reply to Profil provisionning impossible to Install
Hello and thank you for the advice, I don't know XCode, but I managed to create a project and debug it on my iPhone without any problem, what is happening in visual studio?
Replies
Boosts
Views
Activity
Dec ’23
Reply to IOS Simulator not running application
While someone else here may be able to offer a suggestion to help you out, you should also take these questions to the support channels offered by Visual Studio for help with their software.
Replies
Boosts
Views
Activity
Aug ’24
Segmentation fault: 11 in Visual Studio Code M1 chip
Hi! Can you help me? #define _CRT_SECURE_NO_WARNINGS #include #include #include struct Farmacie { char *denumire; int nr_angajati; float *salarii; int an_infiintare; }; struct Farmacie initializare(const char *denumire, int nr_angajati, float *salarii, int an_infiintare) { struct Farmacie f; f.nr_angajati = nr_angajati; f.an_infiintare = an_infiintare; f.denumire = malloc((strlen(denumire) + 1) * sizeof(char)); strcpy(f.denumire, denumire); f.salarii = malloc(sizeof(float) * nr_angajati); for (int i = 0; i < nr_angajati; i++) { f.salarii[i] = salarii[i]; } return f; } void afisareFarmacie(struct Farmacie f) { printf(Denumire: %s, infiintata in: %d, f.denumire, f.an_infiintare); printf(, nr. angajati: %d, cu salariile: , f.nr_angajati); for (int i = 0; i < f.nr_angajati; i++) printf(%5.2f, , f.salarii[i]); printf(n); } struct Farmacie copiere(const struct Farmacie f2) { struct Farmacie aux; aux.an_infiintare = f2.an_infiintare; aux.nr_angajati = f2.nr_angajati; aux.denumire = malloc((strlen(f2.denumir
Replies
0
Boosts
0
Views
577
Activity
Mar ’23
Reply to Uploading failed with ERROR ITMS-90045: Invalid Code Signing Entitlements
Here are my info.plist and entitlements.plist. my Info.plist is And my Entitlements.plist is I also used Transporter to upload the app. The above error message is displayed in Transporter. This app is made with Visual Studio For Mac.
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to When will XCode itself officially support vim plugin?
This. Code and Visual Studio both reliably support Vim. Xcode can't seem to update without breaking any current, useful Vim PlugIns.
Replies
Boosts
Views
Activity
May ’18
Reply to Xcode New File
You have to create a new project in Xcode for each program you write. Creating a new project for each program is annoying when learning a language and writing small programs. I recommend using a text editor such as TextMate, BBEdit, or Visual Studio Code for learning C++. TextMate has a bundle that will let you run your programs from inside the editor. Visual Studio Code probably has an extension to run your programs inside the editor. I'm not sure if BBEdit has a way to run your programs from the editor.
Replies
Boosts
Views
Activity
Nov ’20
Reply to 2nd ViewController
Thanks for your help. This is my first venture into iOS programming. I have used many IDEs for quite a few compilers and builders, from simple C code compilers to NetBeans and Microcrap's Visual Studio. Xcode and Swift are some strange critters. I built a really nice (and somewhat complex) second visualController, named ValuesView in Storyboard that shows everything I need to display my data. Since I can't find the code for that visual Controller, is there any way I can make is a subclass of the first visual Controller without losing the items and placement of what I had built? If that isn't possible, can I rebuild ValuesView with Storyboard? How would I do that?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’19
Reply to Unable to get a new API Key
I am using Visual Studio for my app development and in order to test my apps on a live iPhone, I need to use this API Key. Please see the attachment.
Replies
Boosts
Views
Activity
Nov ’25
Reply to Xcode 7: intellisense not working correctly
Yes I'm of cause talking about code completion.Old Visual Studio habbit.I really like code completion, så Escape is not an option for me.
Replies
Boosts
Views
Activity
Nov ’15
Reply to Interface Builder is bad and getting worse
If you've used a system that allows you create the UI using code such as Visual Studio on Windows you find that as a coder, you enjoy the transparency and control IB helps you get things up quickly but it hides too much i.e. they've taken the abstracting out of the details a bit too far making simple things easier to do but complicating any transgressions of the usual way of doings Visual Studio for example also enables you to go visual (hence the name) but it also lets you go pedal to the metal and generate your whole UI in code IB/Cocoa doesn't really let you do that at least not in a way evident to a beginner
Replies
Boosts
Views
Activity
Jan ’17
Reply to Not receiving ES notification for inflated files
Perfect! Exactly what we needed. I was searching through the telemetry as if it would be reported as /Downloads/$SOME_FILE but eslogger reports it as destination type and file name. This is going to make life a bit harder with what we're trying to do, but thanks Quinn! For those curious it looks something like this: { event: { rename: { destination: { new_path: { dir: { path: /Users/brandondalton/Downloads }, filename: Visual Studio Code.app } }, source: { path: /private/var/folders/8b/fg_9sj9j2_9c0ghl_knlpp1c0000gp/T/com.apple.desktopservices.ArchiveService/TemporaryItems/NSIRD_ArchiveService_oK7iOq/Visual Studio Code.app } } } }
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’23
MAUI AppIcon not created
Hi folks, When trying to distribute my app with transporter, I'm stuck for 2 days on asset validation with the following error : Asset validation failed (90704) Missing app icon. Include a large app icon as a 1024 by 1024 pixel PNG in the asset catalog of apps built for iOS, iPadOS, or watchOS. Without this icon, apps can't be submitted for review.... I tried many workarounds, switching to svg, then png, then svg again, create an asset group with many file sizes, go back to simpliest implementation... I'm using Visual studio 17.9.2 (rollback from more recent version due to incompatibility with XCode), a macbook air with sonoma 14.4 and Xcode 15.3. Has anyone had the same problem and found a solution ?
Replies
0
Boosts
0
Views
556
Activity
Apr ’24
Reply to When I install swift correctly, according to the website, I get an error code while trying "swift --version" and there is no error code when I do "swift" it just goes to another line.
Problems for installing on windows are not for this forum, dedicated to Apple environment. You'd better contact: swift.org Microsoft / Visual studio Wish you to get it out.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’20