Questions tagged [appcode]

AppCode is a smart IDE for iOS/macOS development by JetBrains

Some facts about JetBrains AppCode:

  1. An Objective-C/C/C++/Swift IDE with a really smart code editor
  2. Runs on macOS only
  3. Can open and create Xcode projects
  4. Can run your app on iOS device or in simulator
  5. Has a debugger with evaluate expression
  6. Can refactor Swift, Objective-C and C/C++ code
  7. Analyses code on the fly and offers quick-fix suggestions
  8. Supports Subversion, Git, Perforce and CVS version control systems
  9. Oh, and a fast & intelligent code completion, of course!
229 questions
3
votes
1 answer

Is it possible to sort a contents of project window manually? (non alphabetically)

I want to decide a order of window of project navigator's contents manually. How to do this? I attach a image file. Please open it.
S.J. Lim
  • 3,095
  • 3
  • 37
  • 55
2
votes
1 answer

AppCode warning about a C-style array in an Objective-C class

@implementation MonthView { DayView *dayViews[6][7]; } Xcode does not complain about this code, but AppCode gives a warning: Pointer to non-const type 'DayView * * const * ' with no explicit lifetime My intention was to create a 6x7 block of…
titaniumdecoy
  • 18,900
  • 17
  • 96
  • 133
2
votes
0 answers

How do I view all editor tabs in Xcode?

In Xcode 14 I often have a large number "editor tabs" open but only enough screen space available to see 4 about of them: Is there a way to get an overview of all active editor tabs, so I can quickly select the one I want to navigate to? How…
ninjoncrak
  • 107
  • 1
  • 9
2
votes
1 answer

Using AppCode with Flutter plugin

How can I use AppCode for the ios-specific parts of my Flutter plugin? I've created the plugin with flutter create --template=plugin --platforms=ios myplugin The command doesn't generate an XCode project or workspace for the plugin itself but it…
tjarvstrand
  • 836
  • 9
  • 20
2
votes
1 answer

Is it possible to install multiple AppCode versions side by side

I am a huge fan of Jetbrains "AppCode". But due to the variety of projects I have some depending on older XCode versions and others can be the latest and greatest. It's great that we can have multiple XCode installations side-by-side. But is this…
Martin Mlostek
  • 2,755
  • 1
  • 28
  • 57
2
votes
3 answers

Cocoa pods terminal utf-8 encoding

I am using IntelliJ AppCode for my project. When I try to use cocoadpods from AppCode's terminal, I get the following warning: WARNING: CocoaPods requires your terminal to be using UTF-8 encoding. Consider adding the following to…
Raildex
  • 3,406
  • 1
  • 18
  • 42
2
votes
2 answers

How to speed up AppCode autocompletion?

I use IntelliJ products across multiple technologies and I have noticed that autocompletion in AppCode works much slower than for the other IDEs. Example What I already did I've changed the default VM options, and it looks like this…
Nominalista
  • 4,632
  • 11
  • 43
  • 102
2
votes
1 answer

IntelliJ IDEA 2018.3 add "Undo" / "Redo" etc. to the Toolbar

After upgrading to 2018.3, the Undo button disappeared from Toolbar. How can I add them to the toolbar? I do know how to get Customize toolbar window...but I find no way of adding the Undo button to the toolbar.
senseiwu
  • 5,001
  • 5
  • 26
  • 47
2
votes
0 answers

How to find references PsiElement AppCode Plugin Development

How we can find all the references of an existing PsiElement. Specifically a SwiftFunctionDeclaration. I've tried with ReferencesSearch.search(functionDeclaration, ProjectScope.getProjectScope(functionDeclaration.getProject())).findAll(); But it…
Vadim Salajan
  • 145
  • 1
  • 9
2
votes
3 answers

AppCode found no simulators to run

I open my project with AppCode, and it shows Nothing to run on. I cannot figure out where to configure my simulators. Need somebody to help me. Running my project with Xcode is fine.
Ting Yi Shih
  • 792
  • 2
  • 9
  • 19
2
votes
0 answers

Don't run last successfully finished build in AppCode after manual cancelling

I noticed that after canceling build in AppCode, it automatically runs last successfully finished build on device/simulator. Is there any chance to turn it off and just stop building app?
Nominalista
  • 4,632
  • 11
  • 43
  • 102
2
votes
2 answers

Xcode 8, disable class level properties

In Xcode 8, Objective-C slightly changed. Now there's class level properties. For example, headers for NSBundle @interface NSBundle : NSObject { ... /* Methods for creating or retrieving bundle instances. */ #if…
GRiMe2D
  • 654
  • 1
  • 10
  • 22
2
votes
1 answer

Merge Intellij IDEs to have only one installed

This is a basic question. I use Android Studio, AppCode, IntelliJ IDEA, PHPStorm and RubyMine. Is there any way to merge all of those IDEs? For example, IntelliJ IDEA with plugins for each type of development instead of having 5 IDEs that are…
2
votes
1 answer

AppCode warning "Resource not found" when using Asset Catalog

I have added an image set to the asset catalog (in Xcode) and then intended to access this in code. The code I am using (in AppCode) is... UIImage *image = [UIImage imageNamed:@"Photo_Placeholder"]; I know this works and is correct. However,…
Fogmeister
  • 76,236
  • 42
  • 207
  • 306
2
votes
1 answer

After choosing Darcula theme on first run, AppCode does not give me a choice to use the XCode theme as it did before

I am evaluating AppCode and I just ran into something that is not a big deal but kind of irking me. When I started the program, it asked me to choose a theme. I chose Darcula because it usually is a solid choice. Another choice was XCode. This was…
tacos_tacos_tacos
  • 10,277
  • 11
  • 73
  • 126