#include "IOSObjectArray.h" not found in xcode
--
You received this message because you are subscribed to the Google Groups "j2objc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to j2objc-discus...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
"_IOSClass_fromClass", referenced from:
___Student_class__block_invoke in Student.o
"_JavaLangSystem__initialized", referenced from:
-[Student getName] in Student.o
"_JavaLangSystem_out", referenced from:
-[Student getName] in Student.o
"_JreThrowNullPointerException", referenced from:
-[Student getName] in Student.o
"_OBJC_CLASS_$_JavaLangSystem", referenced from:
objc-class-ref in Student.o
hi, i read j2objc documentation,if i am doing with terminal commands i am getting output but if i copy the files in xcode,it is showing some errors,i am in resolving process ,currently i got this error please reply if you have any idea related to this error
--
//first class:
public class read_arabic extends Activity {
public static int path_chars=0;
public static int path_chars(){
return path_chars;
}
public void onCreate(Bundle savedInstanceState) {
b29.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
path_chars=7;
}
});
}
}
//-----------------------------------------------------------
//second class:
public class read_arabic2 extends Activity {
public void onCreate(Bundle savedInstanceState)
{
final read_arabic qq=new read_arabic();
b30.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
qq.path_chars=6;
}
});
}
}