Posts

Post not yet marked as solved
19 Replies
0 Views
My solutions, found partly thru MacRumors, was to Safe Boot, an re-pair. Then boot normally. Viola iPhone all I had to do was shutdown the iPhone and reboot the iPhone, launch app worked. Laters...
Post not yet marked as solved
19 Replies
0 Views
I still have a weird issue, but like I said on my iPhone, my Xbox controller will connect, and then make the Virtual Controller disappear indicating that the Controller is connected (at least). But nothing functions from the Xbox controller. Then turn off controller and Virtual Controller comes back on... (the controller is there in the debug info, Mac too if I am not mistaken).
Post not yet marked as solved
7 Replies
0 Views
You can really do this "Super Directly" But for a property in a class (or struct even in Swift), you can use @selector, to fetch the VALUE of the property, using a String, if you use Setters/Getters... But no you can't really CREATE a variable with on the fly, but as others have said USE A DICTIONARY! For instance var myOnTheFlyHeap: [String : Any] = [ : ], or [String : Any?] and just throw something in! myOnTheFlyHeap["person1"] = "Johnny Appleseed" Laters...
Post not yet marked as solved
4 Replies
0 Views
The machine, that you originally had hosting the git repos, is almost 99% still hosting those previous xcode server git repos, mine are still intact and there. They are just run by the git binariy, and are served via ssh commands.If you have to setup a new git server, that's plastered all over the internet!But normally all you have to do it have your ssh keys setup, init (on server) and create and init then push (on client)A) This assumes you set your ssh keys up alreadyB) This assumes you had a past Xcode 6/7/8 Server with a symlink called:/git -> pointing to /Library/Developer/XcodeServer/HostedRepositoriesC) If not you can put it where you want as long as you have git running at leastThis is all while as an admin or sudo su, or sudo bash, or sudo all command to get thru!ON SERVERcd /git # Goto git reservoirmkdir -p repoTest.git # Make git dircd /git/repoTest.git # Go insidegit --bare init # Initialize repositorygit config core.sharedRepository group # Update the git's config, group is keyword don't replacechgrp -R <group-name> . # Change files and directories' group, I use: adminchmod -R g+w . # Change permissionschmod g+w objects/pack # If you get push errorsgoto Xcode, and create a mac project on the server called repoTestat ~/ or some convienant developer dirctory you useON CLIENT (with ssh/keys)cd ~/repoTestecho "# repoTest" >> README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin ssh://<user_name>@<server_url>/git/repoTest.gitgit push -u origin masterTHEN DROP INTO SourceTree.app (HAHA)Push Like Crazy Commit Checkout Branch etc etcYou should be good to go!Hope this helps you guys out...Laters...
Post not yet marked as solved
44 Replies
0 Views
OK, so booting macOS 13 from APFS RAID 0 volume not supported! GOT IT!