I'm currently running Logic Pro X 10.4.4 on Catalina. Works great. There was an update (10.4.5) that was released today, but it is not showing up in the App Store nor in the Software Updates.Is this expected behavior for Beta 1?
Search results for
show when run
112,690 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I had the same error and solved it by following these steps: Install rosetta running this command on the Terminal: softwareupdate --install-rosetta. Xcode: Product ¬ Destination ¬ Destination Architectures ¬ Show Both. Select Iphone 14 (Rosetta) as run destination. Clean build folder. Run.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I'm finding developing for HomeKit using the iOS Simulator utterly confounding. All of my home's actual HomeKit accessories show up fine when I run the HomeKit app I'm developing on my actual phone. But none show up when I run my app in the iOS Simulator. Maybe that's how it's supposed to be? I decided to run the HomeKit Accessory Simulator in an attempt to get something to show up in the iOS Simulator, but the accessories I've created there don't show up in the Simulator either. How do I get devices to show up in the iOS Simulator? Thanks.
IOS 18 beta latest update -Missed call is read but show number in caller icon
Topic:
App & System Services
SubTopic:
General
I have iPhone 6S running iOS 9.3.1 and My carrier is switching from AT&T to AT&T WIFI. And it keeps switching in the settings. BTW this is unjailbroken. It will show in the about settings that my network is AT&T WIFI. Plz help me out
I have an alias on my desktop the alias points to a file deep inside my user's documents folder i can double click the alias and the original opens as expected. but when i right click it and pick show original, the finder opens my home folder, with nothing selected, not the document's containing folder with the document selected. same thing happens if i open the document then command-click the icon in the titlebar of the window, (which reveals a popup menu with the path to the document), and pull down to the document's containing folder: the finder reveals only my home folder. what? why?
Could you explai what you see exactly, not only tell how you feel:1. write input value directly. Where do you write input ? In XCode ? In your code ? If so, show the codeI programmed the program that prints input value. Show the code pleasesecond running, console didn't show my input. Please show the code that should show the imputbut output was okay Please show the code that should show the output2. copy & pase input Where do you copy and paste ? In XCode ? In your code ? If so, show the codeit was just terminated and bug report appeared. When does it crash ? During compilation ? In app execution ?
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I was able to log in, but some apps downloaded from the store are not authorized to run. After an authentication dialog they show as damaged.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Close Xcode and try again. When you run the simulator it will Build first meaning that it will compile and run the files based on what you have. So if you deleted something, or everything, it shouldn't show it after you build.Did you stop the previous build?
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I'm not able to run TLSTool in my system. when I change the directory to TLSTool and run the command, it shows -bash: ./TLSTool: is a directory.I am using macOS Sierra 10.12.3.May be its due to an older version of OS.
Topic:
App & System Services
SubTopic:
Networking
Tags:
For anyone who sees this in the future and has the same problem, I recently found out this only applies to running on simulator for our case. If you run it on the actual physical device, the logs are coming in just fine and the chart will show correctly.
Topic:
Developer Tools & Services
SubTopic:
Instruments
Tags:
Is this what you are looking for? menu → Xcode → Settings → Behaviors → Running → Generates output → uncheck Show debugger There’s a similar setting under Running → Starts too, though it seems to be unchecked already by default.
Topic:
Developer Tools & Services
SubTopic:
Xcode
FWIW, it works for me, so (as KMT says) show some actual code -- preferably something that fails when running in a playground.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
Hi, I have recently upgraded to Xcode 12.5 and any build which I archive is saved in the respective folder but it is not showing in the organiser.
Hello guys, I want to show a badge on an object in SwiftUI, precisely I want the rectangle to show the badge on it every time I press it. I did some tests, but it isn't working. Can someone help me to build this? Here’s my code: import SwiftUI import PlaygroundSupport struct ContentView: View { var body: some View { Button(action: { badge(9) }, label: { Rectangle() .frame(width: 180, height: 200) .foregroundColor(.blue) }) } } PlaygroundPage.current.setLiveView(ContentView()) Thanks a lot.