上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: 1.放在超链接中:Test2.直接加载3.导入注意:不可以用 "/>"结束 否则不识别 阅读全文
posted @ 2015-08-31 16:19 朋克 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 1.Inner Join(默认)var Goods = from goods in db.T_Goods join types in db.T_GoodsType on goods.GoodsType equals types.GoodsTypeID join priceinfo in db.T_P... 阅读全文
posted @ 2015-08-09 01:49 朋克 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1.绑定事件,消息槽什么的QObject::connect(&hello,SIGNAL(clicked()),&a,SLOT(quit())); ↑ ↑ ↑ ↑ 控件 ... 阅读全文
posted @ 2015-08-06 17:26 朋克 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 一、安装模板1.git clonehttps://github.com/kattrali/Xcode-Plugin-Template.git2.cdXcode-Plugin-Template3.mkdir~/Library/Developer/Xcode/Template4.mv ./Project... 阅读全文
posted @ 2015-08-03 12:43 朋克 阅读(223) 评论(0) 推荐(0) 编辑
摘要: #include int testfunc(void){ printf("just test\n"); return 5;}int main(){ int (*ptr)(void); ptr = testfunc; int c = (*ptr)(); printf... 阅读全文
posted @ 2015-07-09 00:45 朋克 阅读(170) 评论(0) 推荐(0) 编辑
摘要: windows程序设计示例: 1 #include "windows.h" 2 #pragma comment(lib, "winmm") 3 4 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 5 6 int WINAPI WinMa... 阅读全文
posted @ 2015-07-08 02:34 朋克 阅读(350) 评论(0) 推荐(0) 编辑
摘要: - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ return 0.0;}- (CGFloat)tableView:(UITableView *)tableVie... 阅读全文
posted @ 2015-06-24 14:54 朋克 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 错误信息类似:C:\Users\WindowsSucks\AndroidStudioProjects\MMMeds\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\21.0.0\res\values-v11\... 阅读全文
posted @ 2015-06-23 10:19 朋克 阅读(906) 评论(0) 推荐(0) 编辑
摘要: 1.定位定位使用CoreLocation库,引入CoreLocation/CoreLocation。创建CLLocationManager对象,使用startUpdatingLocation方法开始更新位置信息。_mgr = [[CLLocationManager alloc] init];[_mg... 阅读全文
posted @ 2015-06-05 17:25 朋克 阅读(288) 评论(0) 推荐(0) 编辑
摘要: #define iPhone5 ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640, 1136), [[UIScreen mainScreen] curren... 阅读全文
posted @ 2015-06-05 14:20 朋克 阅读(429) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页