org.robovm.ibxcode.pbxproj.PBXBuildFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robovm-ibxcode Show documentation
Show all versions of robovm-ibxcode Show documentation
The RoboVM doesn't provide any functionality to edit xib/storyboards at iOS side.
All changes to be done in Interface Builder. To simplify it simple xcode project is
generated that contains all classes that are exported by Custom class. These classes
expose IBOutlet/IBOutletCollection/IBAction/IBObservable to easy attach outlet to
corresponding field/setter in class
The newest version!
package org.robovm.ibxcode.pbxproj;
import org.robovm.ibxcode.Utils;
import java.io.File;
public class PBXBuildFile extends PBXNode{
private final PBXFile ref;
public PBXBuildFile(PBXProject project, PBXFile ref) {
super(project, ref.getName());
this.ref = ref;
}
@Override
public void dump(PrintStreamTab ips) {
ips.println(uuidWithComment() + " = {isa = PBXBuildFile; fileRef = " + ref.uuidWithComment() + "; };");
}
}