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
1
vote
1 answer

Rename project with AppCode

I have an existing project in AppCode that I would like to use as a starting point for a new project. So I want to make a copy of the project and then rename this copy. Is there any way to do this using AppCode, or do I have to copy the project…
Jack
  • 16,506
  • 19
  • 100
  • 167
1
vote
1 answer

Does Xcode have a way to jump to the "type declaration" for a variable?

Assume I have the following swift code... let myFooInstance = Utils.createFooInstance() // variable type is `Foo` ... and I want to quickly jump to the type declaration for myFooInstance (ie navigate to the source code for Foo). In AppCode I can…
ninjoncrak
  • 107
  • 1
  • 9
1
vote
2 answers

How can I mute warnings for unused parameters in method implementation

Using AppCode 108.1068, developing an iOS app with cocos2d, I often end up implementing methods for a selector, and it goes like this: -(void) sequenceStateSelectSkillByCPU:(ccTime) dt{ if (cycleCount_==1) { touchHandler_.isEnabled=NO; …
YvesLeBorg
  • 9,070
  • 8
  • 35
  • 48
1
vote
0 answers

AppCode not showing warnings

I am using AppCode 2022.1.2 and I have Xcode version 13.3 and issue is that in AppCode I can not see warnings as in Xcode. Please refer on screenshots below. Is there any set up for AppCode that will enable showing this warnings?…
Zdrinko
  • 11
  • 2
1
vote
1 answer

Where is the AppCode "extract to file" refactoring?

I pretty sure there used to be a KB shortcut to "extract a class to a separate file". Am I wrong or where did it go? I tend to write several classes/structs in the same file when on a roll, and then use refactoring to separate those out in separate…
esbenr
  • 1,356
  • 1
  • 11
  • 34
1
vote
0 answers

Is it possible to see iPhone screen from XCode or AppCode debugger?

I have MacBook, iPhone and cable. I have connected them. On Android I am able to run my application on connected device and see it's screen from desktop computer. Is the same possible from within MacBook?
Dims
  • 47,675
  • 117
  • 331
  • 600
1
vote
1 answer

macOS Swift App: imkxpc_getApplicationProperty:reply: called with incorrect property value 4, bailing

I am writing macOS Swift application with the following environment: XCode 12 and/or JetBrains AppCode 2020.2 Swift 5 macOS 10.15.7 Catalina The Swift app has the following View code as its main UI; import SwiftUI struct ContentView: View { …
Aryo
  • 4,349
  • 2
  • 28
  • 24
1
vote
0 answers

Xcode legacy build system in the AppCode

I am working on xcode now, but I want switch to AppCode to test it's capabilities. Problem is, my project is quite old, and wont build without legacy build system turned on. I know how to switch legacy system in the xcode, and I found how to force…
Vlad
  • 113
  • 2
  • 9
1
vote
1 answer

Opening a project in AppCode

I just downloaded and am trying out AppCode (but am a veteran user of multiple other JetBrains Ide's..) I have tried to open a few different projects but nothing happens. An example is tensorflow/swift-models/Examples/BERT-CoLa I click on Open but…
WestCoastProjects
  • 58,982
  • 91
  • 316
  • 560
1
vote
2 answers

Using Appcode with Kotlin/Native and Cocoapods

I'm starting to use Kotlin/native and Appcode for iOS development. I'm trying to get Cocoapods to work with Kotlin/native, but I'm having some challenges. I've started with the empty Kotlin/native application in AppCode and built that, it builds…
Trond Tunheim
  • 115
  • 10
1
vote
1 answer

AppCode pastes a random string into the editor on pressing Command-Shift-F

In AppCode, whenever I press Command-Shift-F it inputs the following string: 6EF0 28B7 43BF 7C04 A7BA 1B17 756E C8C0 9858 E251. By default that binds to "Search Everywhere," so it used to just place that string into the search bar. However, if I…
Elliot Fiske
  • 1,158
  • 8
  • 15
1
vote
2 answers

Swift + AppCode format for alignment type

What I want is this But when I do formatting automatically from appcode those variables end up like this When I look into their coding style for swift, I can't seem to find the configuration to change this behavior. Anyone know a way to solve…
SaintTail
  • 6,160
  • 4
  • 31
  • 51
1
vote
0 answers

AppCode autocomplete not showing correct results

AppCode's autocomplete is showing some strange behaviour on my side that I cant seem to figure out. There are two issues I'm currently facing: Auto complete results are missing or incorrect, in the case below I'm trying to create a CGRect, but only…
Craigt
  • 3,418
  • 6
  • 40
  • 56
1
vote
1 answer

AppCode Indent After Comment

I'm using AppCode for Objective-C development. It seems like one of the recent updates has changed the behavior of how indents work after a comment. Now, when I add a comment and then hit return to enter code on the next line I get this: Hitting…
Stoph
  • 693
  • 1
  • 5
  • 20
1
vote
1 answer

How to find symbol in current file in Appcode

How to search symbol in current file? Just like 'control+6' in Xcode.
Kyle Wang
  • 48
  • 7