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

Xcode: app builds but won't run and the executable can't be selected in schemes

I'm working with multiple people on an app in Xcode. Today I started Xcode and tried to run the app on my simulator, but it doesn't run. It builds and gives no errors, but the app won't appear on the simulator. As many questions suggested, I needed…
Kevin van Mierlo
  • 9,554
  • 5
  • 44
  • 76
5
votes
0 answers

How to run/debug WatchOS apps using AppCode?

How to run/debug WatchOS apps using AppCode? I just imported an XCode project into AppCode - there's no way to run the watch simulator (there are options for the main app though). What am I missing?
Xlaudius
  • 1,757
  • 2
  • 13
  • 16
5
votes
3 answers

Unit tests (Quick/Nimble) - (no tests found)

I have problem with unit testing. When I run tests, it ends up with "No tests found". I am using AppCode and Quick/Nimble framework for unit testing, but it doesn't work in XCode either. I have XCTest/Kiwi run configuration with Target: MyAppTests,…
trubi
  • 295
  • 2
  • 14
5
votes
4 answers

Fix indentation for entire project in Xcode 7?

I've inherited a huge iOS project which is all using two-space indenting. I need that to be four-space indenting. I know that I can hit Ctrl+I per file, but I'm wondering whether Xcode (or AppCode, for that matter) has a means of re-indenting every…
Luke
  • 9,512
  • 15
  • 82
  • 146
5
votes
0 answers

No autocomplete on cocapods for AppCode 3.1

I have recently set up a project from a base XCode Project with the cocoapods installation, and when importing the project into AppCode 3.1, I am not getting any autocompletion for my swift frameworks that are installed through CocoaPods Here is my…
mdedetrich
  • 1,899
  • 1
  • 18
  • 29
5
votes
2 answers

Have PyCharm call AppCode for C++ debugging?

I own both PyCharm and AppCode. I have a C++ project in AppCode and a Python project in PyCharm. The Python program calls an executable created from the C++ project. AppCode's debugging capabilities are very nice, but unfortunately things go wrong…
Shiania White
  • 345
  • 6
  • 16
5
votes
2 answers

Appcode can't find destination

I am seeing following error in AppCode every time I try to deploy my app to a connected device (an iPad): xcodebuild: error: Was unable to find a destination matching the arguments to the -destination flag: The requested device could not be found…
septerr
  • 6,445
  • 9
  • 50
  • 73
5
votes
2 answers

Xcode autocomplete to show suggestion when "Contains" rather than"Start with"

Being a .Net developer I've vastly worked with Visual Studio and Jetbrains Resharper. When using Resharper and VS, autocomplete suggestions appear when suggestions contains word being typed rather that start with. I've seen similar behavior in…
Amir
  • 9,577
  • 11
  • 41
  • 58
5
votes
4 answers

Show a variable's type in AppCode

Is there a shortcut to quickly show the type of a variable in JetBrains' AppCode? Preferably this would be something akin to Visual Studio, which shows the type of a variable when you hover over it with the mouse.
s73v3r
  • 1,751
  • 2
  • 22
  • 48
4
votes
1 answer

How do I make AppCode find the path to Xcode Version 4.3 (4E109)?

I just installed Xcode Version 4.3 (4E109). I am a JetBrains Appcode user and Appcode now nolonger can find Xcode which now installs by default in /Applications. I tried running: sudo xcode-select -switch /Applications but that had no effect. What's…
dugla
  • 12,774
  • 26
  • 88
  • 136
4
votes
2 answers

Does Jetbrains Appcode still work after upgrading to the Xcode 4.2 beta release?

Does Jetbrains AppCode still work after upgrading to the Xcode 4.2 beta release? https://www.jetbrains.com/objc/
TJez
  • 1,969
  • 2
  • 19
  • 24
4
votes
0 answers

JetBrains AppCode - IDE is indexing user directory

I have an iOS-Project depending on a library which is located in ~/Library/flutter/... Using Xcode: Everything is going well. Using AppCode from JetBrains: The IDE wants to index all files located in ~/.... (there are tons) Possible Solution: I…
Hannes Tiltmann
  • 2,296
  • 1
  • 12
  • 20
4
votes
1 answer

Can I force dot/bracket notation?

For ObjC, I have the choice to use either dot notation or square bracket notation. Is there a way to enforce (with errors/warnings) a certain notation for uniform notation throughout a project?
Raildex
  • 3,406
  • 1
  • 18
  • 42
4
votes
1 answer

appcode can not load underlying module for snapkit

swift project is build and run ok in Xcode also AppCode, but AppCode IDE report bellow error,I can not fix this . I found UIProgressView can use progressView.snp but WKWebView can't , may be this is problem. any one can help me ? Now I have to give…
Michael Mao
  • 433
  • 5
  • 9
4
votes
0 answers

AppCode can't resolve local * variable without const prefix

I've run into something odd in AppCode 2016.1.1. I don't remember this as an issue prior to the 2016 release. If I have the following: NSString *temp = @"test"; The temp variable gets red-flagged as non-resolvable, and code completion will not call…
David Nedrow
  • 1,098
  • 1
  • 9
  • 26
1 2
3
15 16