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

Intellij IDEA custom dart format. How to make dot operator on the same line

I am trying to configure dart to let the operator . appear on the same line. I am not having any success on configuring it to do that. It currently looks like this I would like colors.removeLast() and colors.length to be each on one line. So it…
James Franco
  • 4,516
  • 10
  • 38
  • 80
0
votes
0 answers

URL constructor returns `nil` in Swift

I am new to Swift and running some app under AppCode. And it looks for me, that something strange is happening: legal URL turns to nil in constructor. This is a watch in debugger: Why can it be?
Dims
  • 47,675
  • 117
  • 331
  • 600
0
votes
0 answers

AppCode says "Casting to probably incompatible type" when I'm explicitly checking the type

for (NSPropertyDescription *property in [[self entity] properties]) { if ([property isKindOfClass:NSAttributeDescription.class]) { NSAttributeDescription *attributeDescription = (NSAttributeDescription *)property; AppCode…
Kenny Wyland
  • 20,844
  • 26
  • 117
  • 229
0
votes
1 answer

AppCode PSI Plugin Development - Find reference protocol property

Having a protocol protocol MyTest { var isCorrect: Bool { get } } And a class that implements the protocol class Super: MyTest { var isCorrect: Bool = false } How can you find the declaration of the isCorrect property when in PSI mode? I do…
Vadim Salajan
  • 145
  • 1
  • 9
0
votes
1 answer

Syncing with Swift Package Manager in AppCode fails: attempt to write a readonly database

With AppCode 2020.3, "syncing" my XCode projects fails. I only got the following error message, which says "attempt to write a readonly database": Package manifest execution failed with exit code…
Ben Butterworth
  • 22,056
  • 10
  • 114
  • 167
0
votes
1 answer

How to remove linked project in AppCode?

The title says it all. File > Add > Linked project takes you one way. Where is the way back?
Ben Hogan
  • 55
  • 5
0
votes
1 answer

Appcode doesn't autocomplete third party libraries

Recently I'm giving a hand to my iOs team(coming from Android) and I'm trying to use Appcode to keep all my IntelliJ keybinds and shortcuts. However, even if I can work with Appcode and everything compiles and works well. Some of the libraries that…
Francisco Durdin Garcia
  • 12,540
  • 9
  • 53
  • 95
0
votes
0 answers

How to open a MacOS target only project in AppCode

I have run swift package init to create a Package.swift and then - since Appcode does not seem to support Package.swift I did swift package generate-xcodeproj to generate a macos.xcodeproj . My is macos. When opening the macos…
WestCoastProjects
  • 58,982
  • 91
  • 316
  • 560
0
votes
1 answer

Appcode launch fails with "Config and system paths seem to be equal"

I just re-started AppCode and there is apparently a configuration problem: I went to the /Applications/AppCode.app/Contents/bin' directory and neitheridea.config.pathoridea.system.path` exist in any of those files. In fact none of the files have…
WestCoastProjects
  • 58,982
  • 91
  • 316
  • 560
0
votes
1 answer

AppCode is unable to build any Swift apps

I am new to Swift and AppCode . I am trying out existing projects for size and here is a set of interesting ones https://github.com/soapyigu/Swift-30-Projects In particular let's look at Project 28 - SceneDetector. Here's the App in Xcode And…
WestCoastProjects
  • 58,982
  • 91
  • 316
  • 560
0
votes
1 answer

When I use AppCode, I cannot use third-party libraries through CocoaPods

Premise AppCode version: AppCode 2019.3.5 Build #OC-193.6494.48, built on February 12, 2020 Language Swift 5.0 CocoaPods: version CocoaPods 1.8.3 repo cocoapods- - Type: CDN - URL: https://cdn.cocoapods.org/ - Path:…
Rakuyo
  • 390
  • 3
  • 15
0
votes
0 answers

IntelliJ IDE hotkey or shortcut to swap x with y when there is a code like x=y

Is there a shortcut to swap x and y during assignment x = y. For example: some_object.some_property = another_object.another_property becomes another_object.another_property = some_object.some_property
IamMashed
  • 1,811
  • 2
  • 21
  • 32
0
votes
1 answer

AppCode editor does not respect multiple target, Swift Compiler Flags

When I switch to build any target that is not the first target. The code editor does not recognize the target change. So any code #if ... #endif ...is not recognized by appCode editor. When building, works as expected isolating code…
Andres Canella
  • 3,706
  • 1
  • 35
  • 47
0
votes
1 answer

Can't open Xcode Template package (.xctemplate) with AppCode. Should I be able to?

Hmmm. I've just tried to open an Xcode Template package .xctemplate using AppCode. Nothing is opened, and AppCode just returns to the welcome screen. Anyone familiar with this in AppCode?
David Nedrow
  • 1,098
  • 1
  • 9
  • 26
0
votes
1 answer

Multiple developers on a single Mac Pro

My development team of 5 people is about to start working on an already existing native iOS app. At the time being, we are all using Linux/Windows machines and we're going to have access to one Mac Pro which is one of those cylindrical machines with…