iOS Question Newbie help - Compiled simple app but larger app failed

tsteward

Well-Known Member
Licensed User
Longtime User
So I managed ti install B4I following Erel's video.
Created and installed B4I bridge
Created basic B4Xpages app - compiled and ran as expected
My app which is more complex comes back with the following error
As best I can tell it's not my code, but I have probably not set something up properly.
B4I is much more complex setup IMO.
 

Attachments

  • error.txt
    107.3 KB · Views: 103

Andrew (Digitwell)

Well-Known Member
Licensed User
Longtime User
Looking the error, the problem seems to lie with Customlistview.

Do you have the customlistview as a module as well as in XUIViews?

B4i line: 45
CustomListView1.sv.ScrollViewContentHeight = Cus
'b4i_customlistview' does not have a member named '__sv'
.
.
.
/Users/erel/Documents/Libs/xCustomListView.h:4:1: error: duplicate interface definition for class 'b4i_customlistview'
@interface b4i_customlistview : B4IClass
^
 
Upvote 0

tsteward

Well-Known Member
Licensed User
Longtime User
Looking the error, the problem seems to lie with Customlistview.

Do you have the customlistview as a module as well as in XUIViews?
you got it in one. Thank you
I had icustomlistview selected
 
Upvote 0
Top