three20 application crash in class TTBaseViewController.m : UIViewControllerGarbageCollection.h' file not found - ios4

I am using Xcode4 and try to implement the three30 framework in my app
Source : http://galic-design.com/objective-c/make-my-own-iphone-app-looking-like-facebook-app#comment-27
my application crashes before launching
It crashes in class TTBaseViewController.m
in function
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
at line
UIViewController* popup = [self popupViewController];
[Thread 1: Program received signal: "SIGABRT"]
Any Idea what is the issue
Also its giving error in same class
file://localhost/Users/amit/works/three20/src/Three20UICommon/Sources/TTBaseViewController.m: error: Lexical or Preprocessor Issue: 'Three20UICommon/private/UIViewControllerGarbageCollection.h' file not found

Related

Android Studio couldn't initialize class com.gradle.scan

I get this error when I try to run the app. I also get some Room database error but I fixed them,but this error occurs when I run the app.
Could not initialize class com.gradle.scan.agent.serialization.scan.a.g
* Exception is:
java.lang.NoClassDefFoundError: Could not initialize class com.gradle.scan.agent.serialization.scan.a.g
at com.gradle.scan.plugin.internal.g.a.a(SourceFile:22)
at com.gradle.scan.plugin.internal.b.w.a.a(SourceFile:11)
at com.gradle.scan.plugin.internal.b.c.a(SourceFile:38)
at com.gradle.scan.plugin.internal.o.d.a(SourceFile:51)
at com.gradle.scan.plugin.internal.r.a.b(SourceFile:111)
at com.gradle.scan.plugin.internal.o.d.a(SourceFile:50)
at com.gradle.scan.plugin.internal.c.d$c.a(SourceFile:60)

frontend_tuner_status doesn't work in Python FEI

I'm using the Redhawk IDE 2.0.1 in Centos 6.5.
If I generate a Python based FEI, install, run, allocate, and then try to change the center_frequency via the Properties tab in the IDE I get the error:
Failed to update device property: Center Frequency
Error while executing callable. Caused by org.omg.CORBA.NO_IMPLEMENT: Server-side Exception: null vmcid: 0x41540000 minor code: 99 completed: No
Server-side Exception: null
I've tried to totally different systems and I get the same behavior.
If I do the same thing with the C++ project it works fine. Seems to me the auto generated Python code in 2.0.1 is broken like maybe it's not registering the listener? Any ideas are appreciated as this app will be much easier to implement in Python for me. Thanks
The error org.omg.CORBA.NO_IMPLEMENT: Server-side Exception is a CORBA exception indicating that the FEI device does not implement the setTunerCenterFrequency method, despite the FEI device having a DigitalTuner port. The DigitalTuner IDL inherits from the AnalogTuner IDL, which provides the setTunerCenterFrequency method. There must be a bug in the implementation of the FEI DigitalTuner port. In ${OSSIEHOME}/lib/python/frontend/input_ports.py, InDigitalTunerPort does not inherit from the InAnalogTunerPort, which is where the setCenterFrequency method lives. Changing it to the following should fix this issue:
class InDigitalTunerPort(FRONTEND__POA.DigitalTuner, InAnalogTunerPort):
def __init__(self, name, parent=digital_tuner_delegation()):
InAnalogTunerPort.__init__(self, name, parent)
There's a second issue as well. The generated base class instantiates the DigitalTuner port without passing in a reference to itself, the parent. The generated base class of your FEI Device should change from this:
self.port_DigitalTuner_in = frontend.InDigitalTunerPort("DigitalTuner_in")
to this:
self.port_DigitalTuner_in = frontend.InDigitalTunerPort("DigitalTuner_in", self)

Error "dynamic_cast class unconditional" in XCTestCase with core data

I would like to do some unit tests with Core Data in my swift app, and this is the first time I use Core Data.
To ease my tests I just copied the code generated for the Core Data variables (managedObjectModel, managedObjectContext, ...) from the regular AppDelegate to my test file.
I just want to do something pretty simple and which worked in my app :
var user: User = NSEntityDescription.insertNewObjectForEntityForName("User", inManagedObjectContext: context) as User
The thing is when I launch my test I got this error : swift_dynamicCastClassUnconditional with EXC_BREAKPOINT (code=EXC_I386_BPT, subcode=0x0) but when I continue program execution my test finish well with all I am waiting for.
EDIT : At first I prefixed my class name with my project name MyApp.User, but after I saw that if I put #objc(User), I didn't need the prefix, so I took of the prefix.
Where does this error come from ? Why is my test OK at the end ?

Class init failed in newInstance call

I am continuously facing a situation of which I have no idea. I am tried to test one method that I have implemented in C++. I got an error, a Class init failed when calling newInstance .
It further states that cannot load library:reloc_library[1311]:33 cannot locate 'Z13trainFacePKcS0'... and suddenly it crashes and throw exception. It gives the same error. I will appreciate any help.
Regards,
Adonis.
You have loaded a library like this in the class which gets loaded during class initialization.
static {
System.loadLibrary("gamescript");
}
From your error you have posted, it seems the library cannot be located which means, it either is not present in the apk file or it is not inside the libs folder.

Launch another midlet from midlet

I made the program Test.jar which there is a menu to run another program (Hello.jar).
I've been looking for and get the following code
callLauncher("javaapp:midlet-name=Hello;midlet-vendor=Vendor");
and
PushRegistry.registerAlarm("Hello",now.getTime()+100);
but not successful - throws ClassNotFoundException. Is there another way?
API documentation for the method you use (registerAlarm) explains pretty clearly what you did wrong:
Throws:
...ClassNotFoundException - if the MIDlet class name can not be found in the current MIDlet suite or if this class is not included in any of the MIDlet-<n> records in the descriptor file or the jar file manifest or if the midlet argument is null

Resources