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

CodeSign error: No code signing identities found

I want to run the simulator in AppCode. I get the error above because I haven't registered with apple yet, but I cannot figure out how to run the simulator. This link claims shows how to create a run configuration, but makes no mention of…
Al Lelopath
  • 6,448
  • 13
  • 82
  • 139
0
votes
1 answer

How to assign a method parameter to a property using a keyboard shortcut

Is there a way to assign a method parameter to a property using a keyboard command? I try to use "Extract Field" in this case, but the IDE errors out. A common use case is assigning properties out of an object's…
markshiz
  • 2,501
  • 22
  • 28
0
votes
1 answer

IntelliJ IDEA & AppCode live template nested variable issue

I have this snippet that are used in textmate: var ${0:name} = ${1:"${2:value}"}; When this snippet get called, first the name will be selected and I have a chance to type something and change the variable name. Press TAB again it will select…
Just a learner
  • 26,690
  • 50
  • 155
  • 234
0
votes
1 answer

Copy current word that cursor is in

If my cursor is, for example, like some_w|ord. How could I move the text some_word into my paste buffer? Right now, I execute the follows commands (OSX 10.5+ keymap), ⌥-Left arrow: Go to beginning of word ⌥-Shift-Right arrow: Highlight to end of…
countunique
  • 4,068
  • 6
  • 26
  • 35
0
votes
2 answers

Does AppCode support parameter list completion for Swift?

Hitting CTRL-p or Cmd-p doesn't bring up a list of all the parameters. So I suppose it doesn't. But it does seem to be supported for Objective-C. Perhaps I'm missing something? Is there a button to activate it?
Wilfred Springer
  • 10,869
  • 4
  • 55
  • 69
0
votes
1 answer

AppCode run iOS simulator "Library not loaded"

I was trying AppCode 3.1. I had a iOS 8.1 project with XCode 6.1.1 with one one linked framework. The framework is SwifteriOS.framework build with Carthage (https://github.com/Carthage/Carthage) like this: github "mattdonnelly/Swifter" ==…
Daiwei
  • 40,666
  • 3
  • 38
  • 48
0
votes
1 answer

AppCode - Debug C++ program within Objective-C project?

I have an Objective-C project with a large portion of it written in C++. I've also written a C++ main file in the project which allows the processing done in the C++ side of things to be run as a standalone without the iOS component. Is there anyway…
golmschenk
  • 11,736
  • 20
  • 78
  • 137
0
votes
1 answer

AppCode iOS application: Group folders not visible?

P.S. I am new to both AppCode and iOS I added 2 groups menu and summary and added somefiles to it. I accidentally reverted some file hides these folders from project structure But as you can see, these are available on filesystem How do I…
daydreamer
  • 87,243
  • 191
  • 450
  • 722
0
votes
2 answers

HTML/JavaScript project in AppCode IDE

Is it possible to create a web project (HTML, JavaScript, CSS) in Jetbrains AppCode IDE? On the Features page there is following information: AppCode also fully supports JavaScript, XML, HTML, CSS and XPath including all code editing and…
devmake
  • 5,222
  • 2
  • 28
  • 26
0
votes
1 answer

AppCode showing error message [c++]

I just start using AppCode 2.5.5 on my MacBook Pro for c++ coding. The problem is that the IDE keep showing a error warning, but (I think) that there is no error. That is the Token_stream.h #include #include using namespace…
Awe
  • 23
  • 1
  • 7
0
votes
2 answers

Suggestions Please: File in Xcode Project but Cannot be Found

I have a file that shows up in "Open Quickly" on Xcode and shows up no place in the project if I do "Reveal in Project Navigator". It does compile correctly into several targets. If I add the file to the project, the project cannot compile because…
Dan Rosenstark
  • 68,471
  • 58
  • 283
  • 421
0
votes
1 answer

Why "Move" of class to file with same namespace/name.h in AppCode results in empty .h while all class code is moved to .cpp?

Wondering around new C++ refactoring tool - AppCode I had a few simple questions: how to move class to a file with corresponding name (namespace/name.h), how to move a function declared in .h to .cpp, how to move back? So I had a sample code we want…
myWallJSON
  • 9,110
  • 22
  • 78
  • 149
0
votes
1 answer

copy warning message in AppCode

I am trying out the new AppCode 2.0 for Objective-C development. It shows me a warning in a bubble I don't know from Xcode if I hover the code it indicates as problematic. How can I copy this message to the clipboard for googling? Note, that I don't…
vikingosegundo
  • 52,040
  • 14
  • 137
  • 178
0
votes
0 answers

AppCode CMD + F12 menu IOS return type

When I do CMD + F12 in AppCode I see a list of methods ( nice would be to see properties as well, is this possible? ) but I don't easily see what their return types are to figure out what method I am looking for. Is there a way to see a list of…
mjs
  • 21,431
  • 31
  • 118
  • 200
0
votes
2 answers

iOS Unit Test Fails - Unable To Access KeyChain

I'm trying to write unit tests for an iOS framework I'm creating. Under the covers it uses Nuance's Dragon Mobile SDK. When I run my unit test in Jetbrains' AppCode, I get this error: 2012-08-15 17:43:48.874 otest[62547:707] *** Assertion failure…
1 2 3
15
16