Search results for

“xcode github”

97,553 results found

Post

Replies

Boosts

Views

Activity

Reply to develop 1 project on 2 macs?
Alright I have purchased a GitHub monthly membership and I don't know how to proceed. I created a private repo called iOS Projects and it generated a hyperlink to the repo.first think I need to know is how is a repo different from an xcode project? does a repo hold many xcode projects or is 1 repo meant to be for 1 project.Next, I see two places in xcode that take in GIT info.xcode>preference>accounts>add repoSource Control>Project Name <master> >configure Project Name>Remotes.Please help me out as to what I am supposed to do? Thanks...
Sep ’15
Reply to System Voraussetzung Xcode
Ich habe eine Zeit lang ein MacBook Air 2010 mit OS X 10.11 El Capitan für Xcode 7 verwendet. Mit 2 GB RAM und 250 GB Festplatte. Ich benutze jetzt XCode 11 auf einem MBP 2016, Catalina, 16 GB RAM, 500 GB Festplatte und es läuft gut. Bei einem großen Code hatte ich jedoch Probleme mit dem iMac mit 16 GB RAM mit XCode 9. Sie sollten also in der Lage sein, das MacBook Air mit 8 GB zu verwenden, aber Sie riskieren eine Verlangsamung, wenn Sie große Projekte kompilieren.I used a MacBook Air 2010 with OS X 10.11 El Capitan for Xcode 7 for a while. With 2GB RAM and 250 GB Disk. I now use XCode 11 on a MBP 2016, Catalina, 16 GB RAM, 500 GB Disk and it's doing well. But for a large code, I had problems on iMac with 16 GB RAM with XCode 9. So, you should be able to be able to use MacBook Air with 8 GB, but you risk slow down if you compile large projects.
Mar ’20
Reply to Peculiar EXC_BAD_ACCESS, involving sparse matrices
Hello Claude, First of all, I am sorry about the absence of comments. It would be a headache for me too if I had not written the code myself, so I should have thought about adding comments earlier... I will add them and send the code again soon. The xValues form the vector x in the equation Ax = B, where A and B are matrices that are the arguments of the leastSquaresSolution function. Apple describes how the Ax = B equation can be solved with Swift in this article. xValues is indeed modified by updating xPtr. xPtr's baseAddress is passed to the DenseVector_Double that holds x: let x = DenseVector_Double( count: Int32(A.transpose().count), data: xPtr.baseAddress! ) Then, x is passed to the constant 'status', which should modify x and thereby should modify xPtr and xValues: let status = SparseSolve(SparseLSMR(), a, b, x, SparsePreconditionerDiagScaling)
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’24
Reply to How Would You Solve For A Variable In An Equation?
Thanks! That's very helpful! Do you know how I might make a basic text parser that can extract the values of a, b, and c from one text field if written as something like this: a * x² + b * x + c = 0Also, since I'm not quite as good at math as you are, I have to ask; does the above code solve for x in any instance with one instance of x?
Topic: Programming Languages SubTopic: Swift Tags:
Feb ’17
Reply to How do I downgrade the simulator in Xcode?
Same as guy above, XCode 15 and it only lists 17.0 in the simulator. If I look inside the xcode folders it lists lots of other ios versions, interestingly it doesn't actually list 17, just 8->16.4. How is it this fiddly and wierd to just get a simulator for different versions of ios!? I followed a few guides of downloading other versions of the simulators from github and something else with some commands, don't seem to make any diff, I don't see anything other than ios 17.0.
Oct ’23
Reply to H.265 Decoding with VideoToolBox
I uploaded the project to github. https://github.com/kohshin1977/H265Decoder
Topic: Media Technologies SubTopic: Video Tags:
Replies
Boosts
Views
Activity
Feb ’25
Reply to ios 16 uitextview refresh problem
Add this project to github: https://github.com/prjsoft/ios16textview
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Aug ’22
Reply to develop 1 project on 2 macs?
Alright I have purchased a GitHub monthly membership and I don't know how to proceed. I created a private repo called iOS Projects and it generated a hyperlink to the repo.first think I need to know is how is a repo different from an xcode project? does a repo hold many xcode projects or is 1 repo meant to be for 1 project.Next, I see two places in xcode that take in GIT info.xcode>preference>accounts>add repoSource Control>Project Name <master> >configure Project Name>Remotes.Please help me out as to what I am supposed to do? Thanks...
Replies
Boosts
Views
Activity
Sep ’15
Reply to System Voraussetzung Xcode
Ich habe eine Zeit lang ein MacBook Air 2010 mit OS X 10.11 El Capitan für Xcode 7 verwendet. Mit 2 GB RAM und 250 GB Festplatte. Ich benutze jetzt XCode 11 auf einem MBP 2016, Catalina, 16 GB RAM, 500 GB Festplatte und es läuft gut. Bei einem großen Code hatte ich jedoch Probleme mit dem iMac mit 16 GB RAM mit XCode 9. Sie sollten also in der Lage sein, das MacBook Air mit 8 GB zu verwenden, aber Sie riskieren eine Verlangsamung, wenn Sie große Projekte kompilieren.I used a MacBook Air 2010 with OS X 10.11 El Capitan for Xcode 7 for a while. With 2GB RAM and 250 GB Disk. I now use XCode 11 on a MBP 2016, Catalina, 16 GB RAM, 500 GB Disk and it's doing well. But for a large code, I had problems on iMac with 16 GB RAM with XCode 9. So, you should be able to be able to use MacBook Air with 8 GB, but you risk slow down if you compile large projects.
Replies
Boosts
Views
Activity
Mar ’20
Reply to Xcode 11.1 "Unable to Download Xcode"
This is happening for me - Big Sur 11.5.1 - X Code 12.5.1
Replies
Boosts
Views
Activity
Aug ’21
Reply to How to submit Mac OS Input Method app to AppStore
You may want to distribute your framework via github, instead.
Replies
Boosts
Views
Activity
Mar ’16
Reply to AUMIDISynth - Anybody know how to load instruments into it?
Yes. Try this article which also has a working Github project.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Jul ’16
Reply to Peculiar EXC_BAD_ACCESS, involving sparse matrices
Hello Claude, First of all, I am sorry about the absence of comments. It would be a headache for me too if I had not written the code myself, so I should have thought about adding comments earlier... I will add them and send the code again soon. The xValues form the vector x in the equation Ax = B, where A and B are matrices that are the arguments of the leastSquaresSolution function. Apple describes how the Ax = B equation can be solved with Swift in this article. xValues is indeed modified by updating xPtr. xPtr's baseAddress is passed to the DenseVector_Double that holds x: let x = DenseVector_Double( count: Int32(A.transpose().count), data: xPtr.baseAddress! ) Then, x is passed to the constant 'status', which should modify x and thereby should modify xPtr and xValues: let status = SparseSolve(SparseLSMR(), a, b, x, SparsePreconditionerDiagScaling)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to How Would You Solve For A Variable In An Equation?
Thanks! That's very helpful! Do you know how I might make a basic text parser that can extract the values of a, b, and c from one text field if written as something like this: a * x² + b * x + c = 0Also, since I'm not quite as good at math as you are, I have to ask; does the above code solve for x in any instance with one instance of x?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’17
Reply to Should .gitignore file contain anything about provisioning profile ?
Thanks donarb !I have added your github link to my favorites !!
Replies
Boosts
Views
Activity
Aug ’15
Reply to memory leak
I recommended that you may have a look at GitHub and http://www.cnblogs.com
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’17
Reply to Hybrid iOS app is not showing up auth-Prompt screen for New Kerberos SSO - credential based auth challenge.
That is an issue you'll have to raise with the Cordova github repo.
Replies
Boosts
Views
Activity
Jan ’22
Reply to react native app crashs on launch testFlight
Ask this question on the React Native github project.
Replies
Boosts
Views
Activity
Jun ’22
Reply to How do I downgrade the simulator in Xcode?
Same as guy above, XCode 15 and it only lists 17.0 in the simulator. If I look inside the xcode folders it lists lots of other ios versions, interestingly it doesn't actually list 17, just 8->16.4. How is it this fiddly and wierd to just get a simulator for different versions of ios!? I followed a few guides of downloading other versions of the simulators from github and something else with some commands, don't seem to make any diff, I don't see anything other than ios 17.0.
Replies
Boosts
Views
Activity
Oct ’23
Reply to Widgets not showing text content
You can check the Github page I've mentioned above.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jan ’21