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
0
votes
1 answer

project file not found during git cloning repository in AppCode

i want to clone the repository from github to the JetBrains IDE AppCode and edit it I did everything as it is. but the folders are not displayed they are in the computer, but not in the appcode I have little reputation for posting images so here…
goganych
  • 11
  • 1
0
votes
1 answer

Private static variables in Swift don't compile in AppCode but it does in Xcode

I have a class where I have a private static constant: class A { private static let MY_CONSTANT = 1000 func setUp (xAxis:Charts.XAxis) { ... } } Also in this class I have a method (setUp), inside of that method I create…
xarly
  • 2,054
  • 4
  • 24
  • 40
0
votes
0 answers

How to add a file to PbxGroupPsiElement - AppCode plugin development

I have a reference to PbxGroupPsiElement, and I'm trying to create a file inside using an action. To create a file I'm using following command: PbxGroupPsiElement.getDirectoryPsiElement().createFile("Test.swift"); It does create a file in directory,…
Vadim Salajan
  • 145
  • 1
  • 9
0
votes
1 answer

How do I make AppCode show protocol conformance?

When I use Xcode, it shows warnings telling me a class doesn't conform to a protocol. How should I make it do something similar when using AppCode? I have searched for it, but I can't find a solution.
showlog
  • 68
  • 7
0
votes
1 answer

Debugging Intellij Idea Plugin in AppCode

How can I debug a plugin created in Intellij Idea using Gradle in AppCode? Every time when I'm running runIde Gradle task it starts Intellij Idea Community for debugging. My build.gradle file is: plugins { id 'org.jetbrains.intellij' version…
Vadim Salajan
  • 145
  • 1
  • 9
0
votes
1 answer

appcode cannot find class installed by cocoapods

When I use appcode the app can run normally. But appcode reports syntax error like below attached screenshot. This class is installed by cocoapods. What can I do to dismiss these erros?
Hobson
  • 23
  • 4
0
votes
1 answer

How to move return type to next line in AppCode in function declaration?

How to setup code style in AppCode in order to move return type to next line if the declaration is too long? Here is an example: public func requestString(_ method: Alamofire.HTTPMethod, _ url: URLConvertible, parameters: [String: Any]? =…
Nominalista
  • 4,632
  • 11
  • 43
  • 102
0
votes
1 answer

Set explicitly language for file, Appcode

Is it possible to set a specific language for a single file? Let's say, I want to treat all *.js files as *js, but this single one as React JSX. I found File Types, but it sets all the files with the extension, what is not my intention
Vladyslav Zavalykhatko
  • 15,202
  • 8
  • 65
  • 100
0
votes
1 answer

Intelij AppCode - String constants refactor : how can i extract multiple "hard coded" strings to a single strings file (like in android)

I want to extract multiple "hard coded" strings to a single strings file, is there a smart way to do it in AppCode? I tried to find it, but the only solution for now is: Let's say, I have file MyFile with string in it called time="7:30" Extract…
ggcarmi
  • 458
  • 4
  • 17
0
votes
1 answer

LLDB Debugger - Define custom types display

In our codebase, we're using libfixmath, a library used to calculate floating point values based on its. Hence, the values themselves are all ints underneath, but we want our debugger to display them as floats when stopping on a breakpoint. We're…
keyboard
  • 2,137
  • 1
  • 20
  • 32
0
votes
1 answer

Xcode Run from Other App / Command Line / Apple Script

Is it possible to have Xcode in the background but compile and run the current project via a Script? I'm mainly using AppCode for development, but would like to run from Xcode through a hotkey. AppCode does not properly show a compilation-progress…
keyboard
  • 2,137
  • 1
  • 20
  • 32
0
votes
1 answer

appcode cannot find Drop Frame button

Why my AppCode cannot find "Drop Frame" button and "Dump" button when debugging? Drop Frame : Interrupts execution and returns to the initial point of method execution. In the process, it drops the current method frames from the stack. Dump: Dump…
0
votes
1 answer

Enlarge font for project view in AppCode

I know how to enlarge the font of code in the editor but how can I enlarge the font for the project view. I saw this post but it is addressing IntelliJ and not AppCode. When I go to Appearance under Settings, I do not see any options to change the…
Alex Bollbach
  • 4,370
  • 9
  • 32
  • 80
0
votes
1 answer

Symbol is not available for deployment target X.X in Project ABC

If you use AppCode, I'm sure you've seen this or similar in your code... Method XYZ is not available for deployment target 6.1 in 'Project ABC' Enum Constant XYZ is not available for deployment target 7.0 in 'Project ABC' But yet the project still…
Logicsaurus Rex
  • 3,172
  • 2
  • 18
  • 27
0
votes
1 answer

Cocoapods Errors when using Jetbrains AppCode

I just switched over from Xcode 8 to JetBrain AppCode 2016.3 due to Xcode's terribly slow performance. When on Xcode, I could build our app (via Workspace for Cocoapods) without any errors. After opening the Workspace in AppCode, I tried to debug…
severus
  • 103
  • 2
  • 11