Search results for

“Visual Studio Maui IOS”

109,075 results found

Post

Replies

Boosts

Views

Activity

SimpleTunnel Visual Representation Clarification
I was wondering if I could get a visual clarification on how the SimpleTunnel is set up to work. I created a per-app vpn client based off of SimpleTunnel and want to ensure I understand its inner workings.This is how I currently believe SimpleTunnel works:App (Attempting to reach internet/some server) ^ | (Re-routed via device kernal to Packet Flow of vpn client) v VPN Client App < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > tunnel_server (Packets get sent to and from tunnel_server via tunnel) ^ | | | (Packets get forwarded to utun interface) ***(response gets forwarded to tunnel_server) | v utun interface ^ | ***(response gets forwarded to utun interface) | | (packets get forwarded to actual server) | v internet/some server*** = packets get dropped so it doesnt necessarily reach this stage but ideally it wouldSo is there only one utun interface which the tunnel_server uses to reach the requested server?
0
0
672
Aug ’18
Tutorial / Guide for C++/Visual Basic Users?
Greetings everyone! I took a few programming classes at the local college and learned C/C#/C++ using visual basic. I'd like to learn how to develop for iOS / my Macbook Pro but everything I've read seems so different. I'm a project based learner (like how to build a calculator app, or a database app). Its there a good resource for some step by step tutorials to build some starter apps and take that information and use it to build your own apps down the road? Thanks!Tim
1
0
123
Sep ’16
How to Visualize Data in a DataFrame Using Charts
I want to visualize the data stored in a DataFrame using various charts (barmark, sectormark, linemark, etc.). My questions are as follows: Can a DataFrame be used directly within a chart? If so, could you provide a simple example? If it cannot be used directly, what is the correct way to use it? Could you provide an example? Thank you for your help. Best regards.
0
0
406
Jan ’25
Playing apple music from AVFoundation for visualization
Hi I am working on a music app where I can do some sound analysis, my end goal is to integrate Apple Music API in my app where users can search songs. When the song is played I want to show a type of soundwave/spectrogram. For sound visualization I have AVFoundation but the Music API returns only song ID which could be played using Apple MediaPlayer framework only. Is there any API for doing sound analysis or can I play the Apple music songs using AVFoundation.
4
0
2.4k
Jun ’22
Reply to new classes .h .cpp Xcode, translate from Visual Studio
What is the tutorial you are following? I have not used openFrameworks, but your Visual Studio example has a C++ file, the .cpp file, and your Xcode file has an Objective-C file, the .m file. You either need a C++ file or an Objective-C++ file (extension .mm) to get the code to work, as I doubt openFrameworks supports Objective-C. Have you gone through the openFrameworks Xcode setup tutorial? https://openframeworks.cc/setup/xcode/ You will have a better chance of getting an answer at the openFrameworks forums since I doubt very few people here use openFrameworks. I never heard of it until I read your question. https://forum.openframeworks.cc
Topic: Business & Education SubTopic: General Tags:
Aug ’23
2D buffer visualization for GPGPU application
I am working on a project which involves intensive GPGPU calculations and need to visualize the process as 2d color buffer. Is there any open source example on how to setup all the boilerplate code the easiest way? I do not really need vertex shaders and primitives, just putting 2d array into the view would be enough. I expect most of the calculations logic will be in metal shaders code.
5
0
1k
Nov ’20
Error trying to publish project with .Net Maui VS2022
When I try to publish a project I get the following response: Cannot Create an IOS archive 'ProjectName'. Process cannot be executed on XMA server. There was an error unzipping the file 'C:arch2023-10-26d17cadfc.zip': The given path's format is not supported. I already did the latest updates in VS and XCode. Further, I deleted the XMA folder and I changed the registry entry HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlFileSystem -> LongPathsEnabled from 0 to 1. Does someone have the same issue or can help me with this problem?
0
0
455
Oct ’23
INActivateCarSignalIntent SiriKit audible/visual intent confusion
In SiriKit there is INActivateCarSignalIntent which allows you to recognize when a user asks for an audible or visual signal.For example if you say Honk my car’s horn. `INCarSignalOptions.audible` will be passed to your handler. If you say Flash my car's lights `INCarSignalOptions.visual` will be passed to your handler.However, the above documentation states:Users can ask Siri to activate their car’s signals in a variety of ways. Table 2 provides a few sample phrases in different languages. You can use these phrases during testing to trigger your intents. This list isn’t exhaustive, and Siri may recognize many other phrases.This is confusing because there are other phrases that can trigger `audible` or `.visual` intents. This makes it unreliable to know what the user is actually asking for. visual and audible are too generic and can apply to many things. For example flash the car lights and turn on the car lights both trigger `INCarSignalOptions.visual`.It would make much more sense
0
0
351
Dec ’19
Bringing visual elements from imperative to declarative paradigm
UIViews can be wrapped and used in SwiftUI. But guess what other visual elements are there that can't be wrapped? Sprites! Do you thing wrapping SKNode in similar way even make sense, also with performance considerations? For a start it could bring back physics introduced in UIKit and lacking in SwiftUI, with even more options... Have you ever thought about it, and what were your thoughts?
0
0
863
Dec ’22
Reply to Xcode 8 Profiles Won't Download
This amazing how one can break so much stuff.Profiles were always a mess.I never understood why, if I add a new device to an AdHoc, XCode can't simply use the new one. Event if I download it and delete it it would requite manual setup.Now this new fancy auto stuff comes, breaks the old way and even does not work all the time the way you need it to.New Bug: if you sort profiles by date then delete the oldest one at the top, the list becomes unsorted again!Not a big deal, but it is a mess.Edt: before I forgot. Maybe Visual Studio for Mac will ease the pain
Nov ’16
Custom Instruments: visualizing tree data structure
I was wondering if Instruments provides a way to visualize tree-like data structures (eg: a view hierarchy) when building a custom plugin. The last time I checked none of the built-in detail view types (lists, aggregations, call trees, narrative and Time Slice styles) seemed to be a good fit for this. Looking at this year's Visualize and optimize Swift concurrency session there's a mention to a new set of instruments that use a detail UI (Task force) close to what would be ideal for my use case, but I'm not sure if this is available to 3rd party developers nor where to find the documentation about it. Thanks!
2
0
883
Jun ’22
SimpleTunnel Visual Representation Clarification
I was wondering if I could get a visual clarification on how the SimpleTunnel is set up to work. I created a per-app vpn client based off of SimpleTunnel and want to ensure I understand its inner workings.This is how I currently believe SimpleTunnel works:App (Attempting to reach internet/some server) ^ | (Re-routed via device kernal to Packet Flow of vpn client) v VPN Client App < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > tunnel_server (Packets get sent to and from tunnel_server via tunnel) ^ | | | (Packets get forwarded to utun interface) ***(response gets forwarded to tunnel_server) | v utun interface ^ | ***(response gets forwarded to utun interface) | | (packets get forwarded to actual server) | v internet/some server*** = packets get dropped so it doesnt necessarily reach this stage but ideally it wouldSo is there only one utun interface which the tunnel_server uses to reach the requested server?
Replies
0
Boosts
0
Views
672
Activity
Aug ’18
Tutorial / Guide for C++/Visual Basic Users?
Greetings everyone! I took a few programming classes at the local college and learned C/C#/C++ using visual basic. I'd like to learn how to develop for iOS / my Macbook Pro but everything I've read seems so different. I'm a project based learner (like how to build a calculator app, or a database app). Its there a good resource for some step by step tutorials to build some starter apps and take that information and use it to build your own apps down the road? Thanks!Tim
Replies
1
Boosts
0
Views
123
Activity
Sep ’16
How to Visualize Data in a DataFrame Using Charts
I want to visualize the data stored in a DataFrame using various charts (barmark, sectormark, linemark, etc.). My questions are as follows: Can a DataFrame be used directly within a chart? If so, could you provide a simple example? If it cannot be used directly, what is the correct way to use it? Could you provide an example? Thank you for your help. Best regards.
Replies
0
Boosts
0
Views
406
Activity
Jan ’25
Playing apple music from AVFoundation for visualization
Hi I am working on a music app where I can do some sound analysis, my end goal is to integrate Apple Music API in my app where users can search songs. When the song is played I want to show a type of soundwave/spectrogram. For sound visualization I have AVFoundation but the Music API returns only song ID which could be played using Apple MediaPlayer framework only. Is there any API for doing sound analysis or can I play the Apple music songs using AVFoundation.
Replies
4
Boosts
0
Views
2.4k
Activity
Jun ’22
Reply to XCode 14.2 breaks with iOS 16.4
Same thing, tried updated to Xcode 14.3 but sadly MAUI is not working with Xcode 14.3( Had to downgrade to 14.2, now only can use emulators
Replies
Boosts
Views
Activity
May ’23
Game Maker Studio 2 - Need Developer Certificate
I am using Game Maker Studio 2 for a school project, and I need to create an executable to submit to my teacher. The only way I know of doing this is with the Create Executable, which then tells me I don't have the Developer Certificates. Is there a way of getting these for free? I am on the latest version of MacOS(Mojave).
Replies
3
Boosts
0
Views
1.1k
Activity
Nov ’18
Reply to new classes .h .cpp Xcode, translate from Visual Studio
What is the tutorial you are following? I have not used openFrameworks, but your Visual Studio example has a C++ file, the .cpp file, and your Xcode file has an Objective-C file, the .m file. You either need a C++ file or an Objective-C++ file (extension .mm) to get the code to work, as I doubt openFrameworks supports Objective-C. Have you gone through the openFrameworks Xcode setup tutorial? https://openframeworks.cc/setup/xcode/ You will have a better chance of getting an answer at the openFrameworks forums since I doubt very few people here use openFrameworks. I never heard of it until I read your question. https://forum.openframeworks.cc
Topic: Business & Education SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’23
2D buffer visualization for GPGPU application
I am working on a project which involves intensive GPGPU calculations and need to visualize the process as 2d color buffer. Is there any open source example on how to setup all the boilerplate code the easiest way? I do not really need vertex shaders and primitives, just putting 2d array into the view would be enough. I expect most of the calculations logic will be in metal shaders code.
Replies
5
Boosts
0
Views
1k
Activity
Nov ’20
Error trying to publish project with .Net Maui VS2022
When I try to publish a project I get the following response: Cannot Create an IOS archive 'ProjectName'. Process cannot be executed on XMA server. There was an error unzipping the file 'C:arch2023-10-26d17cadfc.zip': The given path's format is not supported. I already did the latest updates in VS and XCode. Further, I deleted the XMA folder and I changed the registry entry HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlFileSystem -> LongPathsEnabled from 0 to 1. Does someone have the same issue or can help me with this problem?
Replies
0
Boosts
0
Views
455
Activity
Oct ’23
INActivateCarSignalIntent SiriKit audible/visual intent confusion
In SiriKit there is INActivateCarSignalIntent which allows you to recognize when a user asks for an audible or visual signal.For example if you say Honk my car’s horn. `INCarSignalOptions.audible` will be passed to your handler. If you say Flash my car's lights `INCarSignalOptions.visual` will be passed to your handler.However, the above documentation states:Users can ask Siri to activate their car’s signals in a variety of ways. Table 2 provides a few sample phrases in different languages. You can use these phrases during testing to trigger your intents. This list isn’t exhaustive, and Siri may recognize many other phrases.This is confusing because there are other phrases that can trigger `audible` or `.visual` intents. This makes it unreliable to know what the user is actually asking for. visual and audible are too generic and can apply to many things. For example flash the car lights and turn on the car lights both trigger `INCarSignalOptions.visual`.It would make much more sense
Replies
0
Boosts
0
Views
351
Activity
Dec ’19
Visual Intelligence for the action button on the iPhone 16e
Can you guys like probably make Visual Intelligence available for the action button on the iPhone 16e? It should be only for iPhones that use A18 and future gen apple chips.
Replies
1
Boosts
0
Views
167
Activity
Mar ’25
Bringing visual elements from imperative to declarative paradigm
UIViews can be wrapped and used in SwiftUI. But guess what other visual elements are there that can't be wrapped? Sprites! Do you thing wrapping SKNode in similar way even make sense, also with performance considerations? For a start it could bring back physics introduced in UIKit and lacking in SwiftUI, with even more options... Have you ever thought about it, and what were your thoughts?
Replies
0
Boosts
0
Views
863
Activity
Dec ’22
Reply to Xcode 8 Profiles Won't Download
This amazing how one can break so much stuff.Profiles were always a mess.I never understood why, if I add a new device to an AdHoc, XCode can't simply use the new one. Event if I download it and delete it it would requite manual setup.Now this new fancy auto stuff comes, breaks the old way and even does not work all the time the way you need it to.New Bug: if you sort profiles by date then delete the oldest one at the top, the list becomes unsorted again!Not a big deal, but it is a mess.Edt: before I forgot. Maybe Visual Studio for Mac will ease the pain
Replies
Boosts
Views
Activity
Nov ’16
Reply to Error trying to publish .Net Maui app from VS2022
Looks like this is an old post that never had a reply. You should check with the support resources provided by “MAUI” to get assistance with their software. Albert Pascual
  Worldwide Developer Relations.
Replies
Boosts
Views
Activity
Feb ’25
Custom Instruments: visualizing tree data structure
I was wondering if Instruments provides a way to visualize tree-like data structures (eg: a view hierarchy) when building a custom plugin. The last time I checked none of the built-in detail view types (lists, aggregations, call trees, narrative and Time Slice styles) seemed to be a good fit for this. Looking at this year's Visualize and optimize Swift concurrency session there's a mention to a new set of instruments that use a detail UI (Task force) close to what would be ideal for my use case, but I'm not sure if this is available to 3rd party developers nor where to find the documentation about it. Thanks!
Replies
2
Boosts
0
Views
883
Activity
Jun ’22