首页 软件开发 ( Page 1651 )

软件开发 20769

#HTML
移动社区引擎 开源代码

为了帮助OpenCom平台上的众多创业者、开发者缩短研发周期,让他们能够更快更好地实现自己的创意,OpenCom将逐步开放客户端(安卓、IOS)、WAP版及中央桥等系统的源码。

2014-12-15 435

#Objective-C
Objective-C 禁止第三方输入键盘

- (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(NSSt…

2014-12-15 556

#Objective-C
UIImage常用功能封装(UIImage+JYExtention)

// // UIImage+JYExtention.h // 常用分类功能 // // Created by mac on 15-1-4. // Copyright (c) 201…

2014-12-15 481

#Objective-C
iOS button点击点击状态下改变背景颜色

//添加image分类 .h文件代码 #import "UIImage+Extension.h" @implementation UIImage (Extension) + (UI…

2014-12-15 584

#Objective-C
IOS如何获取设备的 DeviceToken

NSString *strDeviceToken = [[[[deviceToken description] stringByReplacingOccurrencesOfStri…

2014-12-15 645

#Python
在字符串ss中查找子串subsr的个数,并输出子串第一次出现的位置

#coding= utf-8 def findStr(ss, substr): if ss.find(substr) == -1: print "not fund" else: r…

2014-12-15 582

#Python
Python数据库-链接mongodb带用户验证

from pymongo import MongoClient client = MongoClient('localhost', 27017) #建立和数据库系统的连接,创建Co…

2014-12-15 509

#HTML
html侧栏对应表单的提示显示

<html> <head> <title>侧栏对应提示</title> <style type="text/css"> …

2014-12-15 241

#Ruby
单例模式

class SingleSimple def initialize @log=File.open("sy.txt","a+") end @@instance=SingleSimpl…

2014-12-14 653

#Ruby
ryby/tk 小时钟

#!/usr/bin/env ruby # -*- coding: utf-8 -*- require 'observer' require 'thread' require 't…

2014-12-14 818

#SQL
一个很强大的分页代码。

' * 数据库转json 分页公用类库 ' * EMAIL:wyonli@gmail.com QQ:82366788 $ ' * $Author: Cason $ ' * $Id:…

sql
2014-12-14 758

#Objective-C
iOS根据生日计算星座

/** * 根据生日计算星座 * * @param month 月份 * @param day 日期 * * @return 星座名称 */ +(NSString *)calcul…

2014-12-14 992