I'm having an error with Ramotion tab bar configuration - swift

I'm following from this site how to set up and use this animation tab bar.
I did all the following instructions but there still is error:
Concept[4854:174780] Unknown class RAMAnimatedTabBarController in Interface Builder file.
Can somebody help me please, I'm very upset about this problem. Hope for positive response.

Related

Xcode Instruments : Unable to identify the memory leak issue

I'm facing some serious memory-related problems in maintenance project and unable to identify the cause for the issue I'm facing. Please find the attached below image for reference.
Help would be much appreciated.
The Cycles and Roots screenshot you showed doesn't provide any information on what's causing the leak. If you want to find the leaks in your code, switch to the call tree view using the jump bar. Click the Call Tree button at the bottom of the window and select Invert Call Tree and Hide System Libraries checkboxes to make it easier to find your code in the call tree view.

Swift ViewController does not respond to -getFile, Could not connect action, target class

My code works all fine but there is always two console message every time I run it.
app works fine but the messages just bugs me so much. Could anyone tell me what is wrong with my code and what does these console message means,thanks
2016-06-13 14:31:15.014
LazyHackintoshGenerator[1625:37250] Could not connect action, target class
LazyHackintoshGenerator.ViewController does not respond to -getFile:
Select your ViewController.
Right-click on its “View Controller” icon (the blue circle with a white square inside).
Look for warning icons (yellow triangles).
Hover over them. An explanation of the problem will appear.
As Feldur said, the problem is probably a leftover link from your storyboard to a method that does not exist anymore (maybe you renamed it or deleted it manually). Remove the link by clicking on the cross, and, if needed, re-link to the appropriate method in your code.
Here is an example of what it will look like in Interface Builder.
Likely a control's action in your storyboard is linked to a method getfile that no longer exists

Error or it does not execute BWWalkthrough

So I have followed your tutorial step by step. Still having issues...
I have installed it first with CocoaPods and seems that others are having the same issue.
If I name the custom class module (top right on the identity inspector) BWWalkthrough it will crash with the following line
let walkthrough = stb.instantiateViewControllerWithIdentifier("onboardingZero") as! BWWalkthroughViewController
Could not cast value of type 'BWWalkthrough.BWWalkthroughViewController' (0x1054e6b50) to 'NameOfMyProject.BWWalkthroughViewController'
If I change the custom class module to NameOfMyProject (or leave it blank) it does not crash and the initial View Controller loads fine, when I tap the first button it simply does not load step0, the code executes fine, but nothing happens and I never get to see the first BWWalkthroughViewController.
I have tried with both cocoaPods and by copying the files. Spent a good two hours looking at this and got nowhere. Please help!!!!!

Warning while creating outlets for NSTableCellView

I am having problems with this tutorial that I cannot understand:
http://www.brandpending.com/blog/2015/6/24/creating-a-custom-layout-nstablecellview-table-columns-with-a-storyboard-using-swift
This tutorial initially works fine. However, to try to better understand the differences between an XIB and a storyboard, I tried to create the custom NSTableCellView layout using an XIB. I couldn’t make it work.
I successfully followed the instructions on the web site until I got to step 4. I found I could not control-drag the text and label fields to BPTableCell.swift.
After more research, I added an Object to the Objects section of the XIB file and set its class to BPTableCell. I was then able to control-drag the controls to it and create IBOutlets. However a there was still a problem - there are now two warnings. The warnings read
MainMenu.xib: warning: Unsupported Configuration: Outlet 'itemField' of 'Table Cell' is connected to 'Item Field,' an invalid destination (Object may be repeated at runtime.)
MainMenu.xib: warning: Unsupported Configuration: Outlet 'itemLabel' of 'Table Cell' is connected to 'Item Label,' an invalid destination (Object may be repeated at runtime.)
I’ve googled these warnings but cannot find anything helpful.
Can someone please tell me what to do to get rid of these warnings?
The bindings are invalid because they connect to entries that are dynamically duplicated (so you'd have multiple objects connected to the same variable). This is not possible, hence the warning. But if you have a custom class for the view anyway you can access all objects from there. You can indeed bind subviews to vars in your cell/view subclass.

bada - Tab bar control

I am new to bada programming and I am facing some problems. I am currently creating an app that consists of 6 tab bar item, each of which have a different form and have different controls in each form. I have tried following the example on http://www.badadev.com/forms-management-in-bada-part-3-managing-forms/ , however, I have set up all the controls in the form, but it does not respond and does not AppLog when I clicked on the button. Can someone please help me on this???
It is very hard to solve your problem that way(without seeing your code). Take look on a XmlParserApp example. It is using FormMgr and maybe you can get some good ideas. Or it is important that you have base class tabsForm that all the forms inherit?