首页 > 2015年09月02日 > 全部分享
【HELLO MAKA】MAKA iOS客户端 之二 架构设计与实现篇
上一篇主要做了MAKA APP的需求分析,功能结构分解,架构分析,API分析,API数据结构分析。 这篇主要讲如何从零做iOS应用架构。 【HELLO MAKA】MAKA iOS客户端 之一 APP分析篇 【HELLO MAKA】MAKA iOS客户端 之二 架构设计与实现篇 【HELLO MAK...
分类:移动平台   时间:2015-09-02 07:05:14    收藏:0  评论:0  赞:0  阅读:365
Palindrome Linked List
Given a singly linked list, determine if it is a palindrome.Follow up:Could you do it in O(n) time and O(1) space?Analyse: Obtain the elements first, ...
分类:其他   时间:2015-09-02 07:05:04    收藏:0  评论:0  赞:0  阅读:274
MFC中Format函数
在MFC程序中,使用CString来处理字符串是一个很不错的选择。CString既可以处理Unicode标准的字符串,也可以处理ANSI标准的字符串。CString的Format方法给我们进行字符串的转换带来了很大的方便,比如常见的int、float和double这些数字类型转换为CString字符...
分类:编程语言   时间:2015-09-02 07:04:54    收藏:0  评论:0  赞:0  阅读:321
Qt数据库连接
#ifndef CONNECTION#define CONNECTION#endif // CONNECTION#include #include #include #include static bool creatConnection(){ QSqlDatabase db =QSqlDat...
分类:数据库技术   时间:2015-09-02 07:04:44    收藏:0  评论:0  赞:0  阅读:280
班级通讯录管理系统
#include #include #include using namespace std; struct student{ char s_no[20]; char s_name[20]; char s_sex[10]; char s_year[10]; char s...
分类:其他   时间:2015-09-02 07:04:24    收藏:0  评论:0  赞:0  阅读:186
MFC分隔字符串的四种方法
vector SplitCString(CString strSource, CString ch){vector vecString;int iPos = 0;CString strTmp;strTmp = strSource.Tokenize(ch,iPos);while(strTmp.Tri....
分类:编程语言   时间:2015-09-02 07:04:14    收藏:0  评论:0  赞:0  阅读:492
[CSS] @keyframes
@keyframes swing{ 0% { transform: rotate(0deg)} 100% {transform: rotate(-30deg)}}#sweetlandia{ animation: swing 2s infinite ease-in-out;}Muli-ste...
分类:Web开发   时间:2015-09-02 07:04:04    收藏:0  评论:0  赞:0  阅读:384
Qt登录对话框
QString c_user,c_password; c_user=CLoginUi->m_user->text().trimmed(); c_password=CLoginUi->m_password->text().trimmed(); if(c_user!=NULL&&c_...
分类:其他   时间:2015-09-02 07:03:43    收藏:0  评论:0  赞:0  阅读:240
Android中处理OnClick和OnTouch方法冲突的解决方案
目前想到的最好的解决方法,大家有更好的欢迎告知。问题:在一个view中有一个按钮,要求可以通过点按移动这个按钮,同时单纯的点击不移动这个按钮可以跳转到新的Activity。遇到的困难:按钮的移动好实现,通过OnTouch的MotionEvent.ACTION_DOWN、MotionEvent.ACT...
分类:移动平台   时间:2015-09-02 07:03:33    收藏:0  评论:0  赞:0  阅读:266
二进制数据库的存取
一:将数据以二进制的形式存储到数据库这里,我们以float一维数组的形式存储多个点的坐标:思路:先将float数组转化为char数组,然后将其转化为safeArray并存储到BLOB数据中,然后存储在数据库中的image字段中。1:将float数组转化为char数组:函数输入:flaot一维数组 数...
分类:数据库技术   时间:2015-09-02 07:03:04    收藏:0  评论:0  赞:0  阅读:268
How to Use updateConstraints(什么时候该使用updateConstraints)
How to Use updateConstraintsHow to Use updateConstraints(怎么使用updateConstraints)problemdoc saystough thingsdoc says again(wwdc2015)conclusion结论原文链接:How...
分类:其他   时间:2015-09-02 07:02:54    收藏:0  评论:0  赞:0  阅读:509
Container With Most Water
Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of ...
分类:其他   时间:2015-09-02 07:02:24    收藏:0  评论:0  赞:0  阅读:254
MFC连接SQL Server数据库
C++连接SQL数据库分步骤进行我们在进行C++连接SQL数据库的操作时,首先应该进行相应的系统配置,然后初始化C++与SQL连接,然后再进行数据连接的操作,然后应用SQL执行语言来具体操作。C++连接SQL数据库第一步 系统配置1.设置SQLSERVER服务器为SQL登录方式,并且系统安全性中的s...
分类:数据库技术   时间:2015-09-02 07:02:14    收藏:0  评论:0  赞:0  阅读:505
vs2010遇到转换到 COFF 期间失败: 文件无效或损坏解决方法
VS2010在经历一些更新后,建立Win32 Console Project时会出“error LNK1123” 错误,解决方案为将 项目|项目属性|配置属性|清单工具|输入和输出|嵌入清单 “是”改为“否”即可,但是没新建一个项目都要这样设置一次。第一步:与上相同。第二步:将 项目|项目属性|配置...
分类:其他   时间:2015-09-02 07:01:54    收藏:0  评论:0  赞:0  阅读:241
strcpy、strncpy、strcmp、strncmp、strlen源码
strcpy#include #include char * strcpy( char *strDest, const char *strSrc ) //将源字符串加const,表明其为输入参数{ assert( (strDest != NULL) &&(strSrc != NULL) ); /.....
分类:其他   时间:2015-09-02 07:01:23    收藏:0  评论:0  赞:0  阅读:333
写给想当程序员的朋友
(一)文章由来及个人经历 我是一名计算机专业的本科毕业生,毕业已经1年多了。毕业后从事的是软件编程工作,经常有其他专业的朋友想从事软件编? ...
分类:其他   时间:2015-09-02 02:34:19    收藏:0  评论:0  赞:0  阅读:243
IT蓝豹 Studio 导入问题总结
<!--[if gte mso 9]><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDra ...
分类:其他   时间:2015-09-02 02:33:53    收藏:0  评论:0  赞:0  阅读:271
IT蓝豹 Android Studio报错
<!--[if gte mso 9]><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDra ...
分类:移动平台   时间:2015-09-02 02:33:28    收藏:0  评论:0  赞:0  阅读:353
《Android特效>ListviewFilter
ListviewFilter 介绍: 带字母索引的ListView,同时还有分组效果(pinned sections),使用接口很简单。 http://itlanbao.com/code/20150816/10000/100428.html 运行效果:
分类:移动平台   时间:2015-09-02 02:33:03    收藏:0  评论:0  赞:0  阅读:310
Android-CircleMenu
Android-CircleMenu 介绍: 自定义ViewGroup实现的圆形旋转菜单,支持跟随手指旋转以及快速旋转。 http://itlanbao.com/code/20150812/10000/100329.html 运行效果:
分类:移动平台   时间:2015-09-02 02:32:38    收藏:0  评论:0  赞:0  阅读:312
1294条   上一页 1 ... 46 47 48 49 50 ... 65 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!