Unable to reset xcode theme/ color scheme - xcode

I accidentally changed the default theme "dracula" and now cannot change it back.
i tried the method to add a new theme which would choose from original sources but it does not show the option for the same. any ideas?
please refer to the image below for further details
thanks in advance

I think Dracula is not a default Xcode theme from apple (I don't have it in my Xcode version 10.1 (10B61)), so maybe you need to re-install the original template.
You can find more info in the following link:
https://draculatheme.com/xcode/

Related

How to reset theme to default in hyper terminal

I've installed a new theme in hyper and now it looks like this. What can I do to fix it? hyper_img
Thank you.
Per the Github, try deleting your config file at ~/Library/Application Support/Hyper/.hyper.js. This should reset your customizations (including the theme).
If you want to customize the theme yourself, check out the question How can I change the theme of my Hyper Terminal?
You could also just run hyper uninstall <theme-name> in the hyper app.

Fonts & Color Themes for Xcode7

Is there a way to install Themes on Xcode7.
I know that there are several themes available for Xcode. But, I am wondering if third party themes works on Xcode7?
I tried to copy the XYZ.dvtcolortheme into the directory ~/Library/Developer/Xcode/UserData/FontAndColorThemes/. Even though the theme shows up in the Xcode, I cannot see the changes in Fonts and Color after selecting the theme.
Any help?
I recommend doing what #bademi and what #CoolPenguin said. Try to close out of Xcode and then restart your computer. If those don't work I recommend contacting whoever made the theme to see if they know what's up. Hope I helped!

Core Data in XCode 5 - installing manually and how?

It seems like that in the new version of XCode, Core Data is something i have to install manually. The check box that used to be there when i create a new project is gone.
I've searched to the end of the internet, finding no answer that seems to work in the new version of XCode. Can someone confirm my problem, and does someone have a solution for it? Thanks in advance.
Core Data checkbox is not available in all type of projects. If you try to create an empty project, the "Use core data" checkbox is still there (this was the same in xcode 4).
You can add core data manually by following this tutorial:
http://wiresareobsolete.com/wordpress/2009/12/adding-core-data-existing-iphone-projects/
you could create a new master-detail Xcode project (check the 'use core data' checkbox when creating) and just copy the code from there.
this is particularly helpful when combined with:
http://wiresareobsolete.com/2009/12/adding-core-data-existing-iphone-projects/

How to copy color style preferences of Xcode 3.2.4 to Xcode 4.2?

I had a great editor color theme for Xcode 3.2.4 which helped me coding at night. It took me a week to get that theme right.
I installed Xcode 4 in a new directory and kept Xcode 3.2.4 on my hard drive. Is there a way to import the Xcode 3.2.4 color theme in Xcode 4.2, such that I won't have to re-configure everything?
It looks like Xcode color themes now use a new format. The defaults are provided by /Developer/Library/PrivateFrameworks/DVTKit.framework. When you create your own, the selected default is duplicated and a YourThemeName.dvtcolortheme is created in your ~/Library/Developer/Xcode/UserData/FontAndColorThemes folder.
The theme files are in XML format with colors stored as RGBA values in a string:
...
<key>DVTSourceTextSyntaxColors</key>
<dict>
<key>xcode.syntax.attribute</key>
<string>0.512 0.423 0.157 1</string>
...
I don't think there's a way to convert them directly. If it's truly that hard to recreate in the UI, you might consider creating and manually editing a custom theme.

Xcode3 to Xcode4 code templates

can someone tell me how to convert code templates from xcode3 to xcode4?
I am reading article at http://iphonedevelopment.blogspot.com/2009/04/opengl-es-from-ground-up-part-2-look-at.html and author offers his OpenGLES code template, but I can't get it working in new xcode4, seems it have different format. Any suggestions?
Thanks in advance :)
I had the same problem, here is a list of the changes you need to do to make your xcode 3 templates works with xcode 4 :
First you have to move your templates to a new directory :
/YourUserDirectory/Library/Developer/Xcode/Templates/File Templates
(previously it was /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/File Templates)
Then you need to :
rename your templates from "*.pbfiletemplate" to ".xctemplate"
rename class.h into ___FILEBASENAME___.h (the class.m can stay unchanged)
inside all of your files change «FILEBASENAMEASIDENTIFIER» into ___FILEBASENAMEASIDENTIFIER___
Additonaly all the key words like «FILENAME», «PROJECTNAME», need to be replaced by ___FILENAME___, ___PROJECTNAME___, etc
«OPTIONALHEADERIMPORTLINE» needs to be replaced by #import "___FILEBASENAME___.h"
Hope this helps,
Vincent
Until XCode 4 is finalised, there's probably not much point in this. However, you can side by side install XCode 3 and 4 and the XCode project format is compatible between them. Hence, I'd just install the template in XCode 3, create your new project(s), then open the results in XCode 4.

Resources