Questionsint:questionID(PK)varchar:questionTitleint:questionNumberint:sectionID(FK)
我在Objective c中构建了几乎相同的结构化类
#import <Foundation/Foundation.h>@interface Question : NSObject { NSInteger qID; Nsstring* qTitle; NSInteger qNumber; }@property (nonatomic) NSInteger qID;@property (nonatomic,retain) Nsstring* qTitle;@property (nonatomic) NSInteger qNumber;@end#import "Question.h"@implementation Question@synthesize qID,qTitle,qNumber;@end
我的问题是,无论如何要映射结构?为iphone PHP通信存在兼容性框架吗?
例如获取PHP以回显对象数组并将元素分配给问题对象
解决方法 您需要构建一个小的“服务”,在Json中对您的项进行编码并通过http返回它们,这里的文档是:http://php.net/manual/en/ref.json.php
正如上面提到的Katfish,您将需要在项目中结合NSURLConnection / NSURLRequest或ASIhttp [2]库使用SBJsON [1]库.如果您不熟悉Cocoa / Obj-C中的任何http访问方法,ASIhttp可能更容易.
这是一个很好的例子:
http://blog.zachwaugh.com/post/309924609/how-to-use-json-in-cocoaobjective-c
[1] http://code.google.com/p/json-framework/
[2] http://allseeing-i.com/ASIHTTPRequest/
总结以上是内存溢出为你收集整理的iPhone App Dev – mysql-> php – > iphone全部内容,希望文章能够帮你解决iPhone App Dev – mysql-> php – > iphone所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)